Disable Multiplayer Buttons On WASM

This commit is contained in:
TheBrokenRail
2023-08-05 04:01:10 -04:00
committed by iProgramInCpp
parent cc3310b556
commit af74761c97
3 changed files with 12 additions and 0 deletions

View File

@@ -124,6 +124,10 @@ void OptionsScreen::init()
m_buttonTabList.push_back(&m_BackButton);
UpdateTexts();
#ifdef __EMSCRIPTEN__
m_srvVisButton.m_bEnabled = false;
#endif
#endif
}