diff --git a/plugin_sa/game_sa/CMenuManager.cpp b/plugin_sa/game_sa/CMenuManager.cpp index 3e21d515..afd34f10 100644 --- a/plugin_sa/game_sa/CMenuManager.cpp +++ b/plugin_sa/game_sa/CMenuManager.cpp @@ -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) { diff --git a/plugin_sa/game_sa/CMenuManager.h b/plugin_sa/game_sa/CMenuManager.h index d29be5d3..b4bb5b14 100644 --- a/plugin_sa/game_sa/CMenuManager.h +++ b/plugin_sa/game_sa/CMenuManager.h @@ -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);