mirror of https://github.com/stella-emu/stella.git
keep up with changes in the core.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@889 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
64f760d8b1
commit
edb66d80fa
File diff suppressed because it is too large
Load Diff
|
@ -21,6 +21,7 @@
|
|||
//#include "gx.h"
|
||||
#include "OSystemWinCE.hxx"
|
||||
#include "FrameBufferWinCE.hxx"
|
||||
#include "EventHandler.hxx"
|
||||
|
||||
char *msg = NULL;
|
||||
int EventHandlerState;
|
||||
|
@ -191,7 +192,7 @@ DECLSPEC int SDLCALL SDL_PollEvent(SDL_Event *event)
|
|||
else if (event->type==SDL_MOUSEBUTTONDOWN && event->motion.x<20 && event->motion.y<20 && EventHandlerState!=2 && EventHandlerState!=3)
|
||||
{
|
||||
// top left for menu
|
||||
theOSystem->eventHandler().enterMenuMode();
|
||||
theOSystem->eventHandler().enterMenuMode((enum EventHandler::State)3); //S_MENU
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
extern char *msg;
|
||||
#define throw //
|
||||
|
||||
#define stricmp _stricmp
|
||||
|
||||
#pragma warning(disable: 4800)
|
||||
#pragma warning(disable: 4244)
|
||||
#pragma warning(disable: 4786)
|
||||
|
|
Loading…
Reference in New Issue