Fixed missing 'break', which was causing both 'Change Filter' and 'Decrease

XStart' to be bound to Alt-F.


git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@334 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2004-08-06 01:51:15 +00:00
parent 8401b26bfa
commit b99c0af7e1
1 changed files with 14 additions and 13 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: mainSDL.cxx,v 1.14 2004-07-28 23:54:38 stephena Exp $ // $Id: mainSDL.cxx,v 1.15 2004-08-06 01:51:15 stephena Exp $
//============================================================================ //============================================================================
#include <fstream> #include <fstream>
@ -416,6 +416,7 @@ void HandleEvents()
case SDLK_f: case SDLK_f:
if(theUseOpenGLFlag) if(theUseOpenGLFlag)
((FrameBufferGL*)theDisplay)->toggleFilter(); ((FrameBufferGL*)theDisplay)->toggleFilter();
break;
#endif #endif
#ifdef DEVELOPER_SUPPORT #ifdef DEVELOPER_SUPPORT
case SDLK_END: // Alt-End increases XStart case SDLK_END: // Alt-End increases XStart