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:
Brian Roberts 2023-09-08 16:07:02 -05:00 committed by GitHub
commit 4d084a2b0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -308,7 +308,7 @@ bool useTimestamp = false;
bool useRealTimestamp = false;
static U32 initTime = Platform::getRealMilliseconds();
U32 startTime = initTime;
static U32 startTime = initTime;
ConsoleFunctionGroupBegin( Clipboard, "Miscellaneous functions to control the clipboard and clear the console.");