Added missing semicolon in Mac specific code

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@481 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
markgrebe 2005-06-11 01:52:49 +00:00
parent 80ef283eb1
commit 8bf842f319
1 changed files with 3 additions and 3 deletions

View File

@ -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: EventHandler.hxx,v 1.37 2005-06-08 18:45:08 stephena Exp $
// $Id: EventHandler.hxx,v 1.38 2005-06-11 01:52:49 markgrebe Exp $
//============================================================================
#ifndef EVENTHANDLER_HXX
@ -74,7 +74,7 @@ struct Stella_Joystick {
mapping can take place.
@author Stephen Anthony
@version $Id: EventHandler.hxx,v 1.37 2005-06-08 18:45:08 stephena Exp $
@version $Id: EventHandler.hxx,v 1.38 2005-06-11 01:52:49 markgrebe Exp $
*/
class EventHandler
{
@ -194,7 +194,7 @@ class EventHandler
#ifndef MAC_OSX
return (mod & KMOD_CTRL) > 0;
#else
return ((mod & KMOD_META) && !(mod & KMOD_SHIFT))
return ((mod & KMOD_META) && !(mod & KMOD_SHIFT));
#endif
}