mirror of https://github.com/stella-emu/stella.git
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:
parent
8401b26bfa
commit
b99c0af7e1
|
@ -13,7 +13,7 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// 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>
|
||||
|
@ -416,6 +416,7 @@ void HandleEvents()
|
|||
case SDLK_f:
|
||||
if(theUseOpenGLFlag)
|
||||
((FrameBufferGL*)theDisplay)->toggleFilter();
|
||||
break;
|
||||
#endif
|
||||
#ifdef DEVELOPER_SUPPORT
|
||||
case SDLK_END: // Alt-End increases XStart
|
||||
|
|
Loading…
Reference in New Issue