Fixed compiler warnings (STK time function used 64-bit ints, so that stk still works after 2037 or so :) ).

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8315 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2011-04-12 23:09:34 +00:00
parent f7c772eef9
commit 9f2cc716eb
2 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@
*/
u32 getTime()
Time::TimeType getTime()
{
return Time::getTimeSinceEpoch();
}

View File

@ -10,6 +10,7 @@
#include "irrArray.h"
#include "IOSOperator.h"
#include "utils/time.hpp"
using namespace irr;
using namespace gui;
@ -141,7 +142,7 @@ using namespace gui;
gui::IGUIFont *OverrideFont, *LastBreakFont;
IOSOperator* Operator;
u32 BlinkStartTime;
Time::TimeType BlinkStartTime;
s32 CursorPos;
s32 HScrollPos, VScrollPos; // scroll position in characters
u32 Max;