fix compilation

This commit is contained in:
Pawel Kolodziejski 2009-10-05 08:50:25 +00:00
parent 7aa79c880d
commit cbd215fa69
2 changed files with 1 additions and 8 deletions

View File

@ -35,7 +35,7 @@ ifeq "$(HAVE_GCC)" "1"
#CXXFLAGS+= -Wmissing-format-attribute
# Disable RTTI and exceptions, and enabled checking of pointers returned by "new"
CXXFLAGS+= -fno-rtti -fno-exceptions -fcheck-new
CXXFLAGS+= -fno-exceptions -fcheck-new
# There is a nice extra warning that flags variables that are potentially
# used before being initialized. Very handy to catch a certain kind of

View File

@ -112,13 +112,6 @@ int BrowserDialog::runModal() {
NavDialogDispose(dialogRef);
// If we were in fullscreen mode, switch back
if (wasFullscreen) {
g_system->beginGFXTransaction();
g_system->setFeatureState(OSystem::kFeatureFullscreenMode, true);
g_system->endGFXTransaction();
}
return choiceMade;
}