A small fix that I forgot to include in the last commit.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@206 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2003-11-13 00:26:58 +00:00
parent 24968d9976
commit 7b72240fa2
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
// //
// $Id: EventHandler.cxx,v 1.19 2003-11-13 00:25:07 stephena Exp $ // $Id: EventHandler.cxx,v 1.20 2003-11-13 00:26:58 stephena Exp $
//============================================================================ //============================================================================
#include <algorithm> #include <algorithm>
@ -157,7 +157,7 @@ void EventHandler::sendEvent(Event::Type event, Int32 state)
else if(event == Event::Quit) else if(event == Event::Quit)
{ {
myQuitStatus = !myQuitStatus; myQuitStatus = !myQuitStatus;
// myConsole->settings().saveConfig(); myConsole->settings().saveConfig();
return; return;
} }