diff options
| -rw-r--r-- | gui/GuiManager.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/gui/GuiManager.cpp b/gui/GuiManager.cpp index ebab4b1b2b..3754622aea 100644 --- a/gui/GuiManager.cpp +++ b/gui/GuiManager.cpp @@ -127,6 +127,10 @@ bool GuiManager::loadNewTheme(Common::String id, ThemeEngine::GraphicsMode gfx)  	redraw();  	_system->updateScreen(); +	Common::Event event; +	event.type = Common::EVENT_SCREEN_CHANGED; +	_system->getEventManager()->pushEvent(event); +  	return true;  } | 
