Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@

#include "ww3d.h"

#include "../OnlineServices_Init.h"

// This is for non-RC builds only!!!
#define VERBOSE_VERSION L"Release"

Expand Down Expand Up @@ -1352,7 +1354,7 @@ void OptionsMenuInit( WindowLayout *layout, void *userData )
GameWindow *parent = TheWindowManager->winGetWindowFromId( nullptr, parentID );
TheWindowManager->winSetFocus( parent );

if( (TheGameLogic->isInGame() && TheGameLogic->getGameMode() != GAME_SHELL) || TheGameSpyInfo )
if( (TheGameLogic->isInGame() && TheGameLogic->getGameMode() != GAME_SHELL) || NGMP_OnlineServicesManager::GetInstance() != nullptr)
{
// disable controls that you can't change the options for in game
comboBoxLANIP->winEnable(FALSE);
Expand Down
Loading