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
4 changes: 2 additions & 2 deletions plugin_sa/game_sa/CMenuManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ void CMenuManager::DrawFrontEnd() {
plugin::CallMethod<0x57C290, CMenuManager*>(this);
}

void CMenuManager::DrawQuitGameScreen(int unused) {
plugin::CallMethod<0x57D860, CMenuManager*>(this, unused);
void CMenuManager::DrawQuitGameScreen() {
plugin::CallMethod<0x57D860, CMenuManager*>(this);
}

void CMenuManager::DrawStandardMenu(bool header) {
Expand Down
2 changes: 1 addition & 1 deletion plugin_sa/game_sa/CMenuManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ class PLUGIN_API CMenuManager {
char DrawControllerScreenExtraText(int unk);
char DrawControllerSetupScreen();
void DrawFrontEnd();
void DrawQuitGameScreen(int unused);
void DrawQuitGameScreen();
void DrawStandardMenu(bool header = true);
void DrawWindow(const CRect& coords, const char* pKey, unsigned char nColour, CRGBA backColor, bool Unused, bool bBackground);
void DrawWindowedText(float x1, float y1, float x2, float y2, char* gxt, int align);
Expand Down