Core: TimeStop Elapsed now returns dword

git-svn-id: svn://ultimatepp.org/upp/trunk@1522 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-08-21 12:51:57 +00:00
parent eda38c577e
commit 4ff86aa5b5

View file

@ -13,7 +13,7 @@ class TimeStop : Moveable<TimeStop> {
dword starttime;
public:
int Elapsed() const { return GetTickCount() - starttime; }
dword Elapsed() const { return GetTickCount() - starttime; }
String ToString() const;
void Reset();