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:
parent
f7c772eef9
commit
9f2cc716eb
@ -26,7 +26,7 @@
|
||||
*/
|
||||
|
||||
|
||||
u32 getTime()
|
||||
Time::TimeType getTime()
|
||||
{
|
||||
return Time::getTimeSinceEpoch();
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user