Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Generals/Code/GameEngine/Source/GameClient/InGameUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5971,6 +5971,11 @@ void InGameUI::drawRenderFps(Int &x, Int &y)

void InGameUI::drawSystemTime(Int &x, Int &y)
{
if (!m_systemTimeString)
{
return;
}

// current system time
SYSTEMTIME systemTime;
GetLocalTime( &systemTime );
Expand Down
8 changes: 8 additions & 0 deletions GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6208,8 +6208,14 @@
}
}

void InGameUI::drawSystemTime(Int &x, Int &y)

Check failure on line 6211 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32+e

'void InGameUI::drawSystemTime(Int &,Int &)': redeclaration of member is not allowed

Check failure on line 6211 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-debug+e

'void InGameUI::drawSystemTime(Int &,Int &)': redeclaration of member is not allowed

Check failure on line 6211 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-profile+e

'void InGameUI::drawSystemTime(Int &,Int &)': redeclaration of member is not allowed
if (!m_systemTimeString)

Check failure on line 6212 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32+e

syntax error: 'if'

Check failure on line 6212 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32+e

syntax error: missing ';' before 'if'

Check failure on line 6212 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-debug+e

syntax error: 'if'

Check failure on line 6212 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-debug+e

syntax error: missing ';' before 'if'

Check failure on line 6212 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-profile+e

syntax error: 'if'

Check failure on line 6212 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-profile+e

syntax error: missing ';' before 'if'
{

Check failure on line 6213 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32+e

'{': missing function header (old-style formal list?)

Check failure on line 6213 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32+e

syntax error: missing ';' before '{'

Check failure on line 6213 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-debug+e

'{': missing function header (old-style formal list?)

Check failure on line 6213 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-debug+e

syntax error: missing ';' before '{'

Check failure on line 6213 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-profile+e

'{': missing function header (old-style formal list?)

Check failure on line 6213 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-profile+e

syntax error: missing ';' before '{'
return;
}


{

Check failure on line 6218 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32+e

'{': missing function header (old-style formal list?)

Check failure on line 6218 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-debug+e

'{': missing function header (old-style formal list?)

Check failure on line 6218 in GeneralsMD/Code/GameEngine/Source/GameClient/InGameUI.cpp

View workflow job for this annotation

GitHub Actions / Build GeneralsMD / win32-profile+e

'{': missing function header (old-style formal list?)
// current system time
SYSTEMTIME systemTime;
GetLocalTime( &systemTime );
Expand Down Expand Up @@ -6345,4 +6351,6 @@
m_gameTimeFrameString->draw(horizontalFrameOffset, m_gameTimePosition.y, GameMakeColor(180,180,180,255), m_gameTimeDropColor);
}




Expand Down
Loading