mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 08:34:40 +00:00
Merge pull request #1081 from Areloch/static_startTime_fix
Based on Tron's suggestion, making the startTime var static to avoid possible collisions
This commit is contained in:
commit
4d084a2b0f
1 changed files with 1 additions and 1 deletions
|
|
@ -308,7 +308,7 @@ bool useTimestamp = false;
|
||||||
bool useRealTimestamp = false;
|
bool useRealTimestamp = false;
|
||||||
|
|
||||||
static U32 initTime = Platform::getRealMilliseconds();
|
static U32 initTime = Platform::getRealMilliseconds();
|
||||||
U32 startTime = initTime;
|
static U32 startTime = initTime;
|
||||||
|
|
||||||
ConsoleFunctionGroupBegin( Clipboard, "Miscellaneous functions to control the clipboard and clear the console.");
|
ConsoleFunctionGroupBegin( Clipboard, "Miscellaneous functions to control the clipboard and clear the console.");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue