Fixed some typos in comments.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1743 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
cosmosninja 2008-04-26 08:49:09 +00:00
parent 652d0ade9e
commit 12f861c3a2

View File

@ -66,7 +66,7 @@ class WidgetManager
ET_COLUMN
};
/* I decided to waste one integer per break/column with the wgt_pos
/* I decided to waste one integer per break/column with the pos
* variable inside the WidgetElement struct, since otherwise we
* would need 2 vectors for breaks and columns, which would use more
* memory, be slower and more complex than this. -Coz
@ -74,7 +74,7 @@ class WidgetManager
struct WidgetElement
{
ElementTypes type;
int pos; //If the element is a widget, the position fo the widget
int pos; //If the element is a widget, the position of the widget
//in it's vector
WidgetElement(ElementTypes _type, int _pos):type(_type), pos(_pos){};