mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-31 16:03:24 +00:00
Minor changes to compile WinCE port
svn-id: r3758
This commit is contained in:
parent
5ebbbd8c8f
commit
2a3fb540ac
2
scumm.h
2
scumm.h
@ -2281,6 +2281,8 @@ struct Serializer {
|
||||
|
||||
bool isSaving() { return _saveOrLoad; }
|
||||
|
||||
bool Serializer::checkEOFLoadStream();
|
||||
|
||||
};
|
||||
|
||||
extern const uint32 IMxx_tags[];
|
||||
|
@ -285,8 +285,13 @@ void Scumm::scummMain(int argc, char **argv) {
|
||||
}
|
||||
|
||||
int Scumm::scummLoop(int delta) {
|
||||
|
||||
#ifndef _WIN32_WCE
|
||||
|
||||
if (_debugger)
|
||||
_debugger->on_frame();
|
||||
|
||||
#endif
|
||||
|
||||
_vars[VAR_TMR_1] += delta;
|
||||
_vars[VAR_TMR_2] += delta;
|
||||
|
8
stdafx.h
8
stdafx.h
@ -2,6 +2,9 @@
|
||||
* $Id$
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.12 2002/03/14 22:45:22 arisme
|
||||
* Minor changes to compile WinCE port
|
||||
*
|
||||
* Revision 1.11 2002/03/09 13:48:53 drigo
|
||||
* Support for MacOS classic port
|
||||
*
|
||||
@ -36,6 +39,8 @@
|
||||
#pragma once
|
||||
#endif // _MSC_VER > 1000
|
||||
|
||||
#if !defined(_WIN32_WCE)
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||||
#define NOGDICAPMASKS
|
||||
#define OEMRESOURCE
|
||||
@ -60,6 +65,8 @@
|
||||
#define NOSOUND
|
||||
#define NODRAWTEXT
|
||||
|
||||
#endif
|
||||
|
||||
#include <SDL.h>
|
||||
#include <windows.h>
|
||||
#include <stdio.h>
|
||||
@ -73,6 +80,7 @@
|
||||
#include <assert.h>
|
||||
#include <mmsystem.h>
|
||||
#include <ctype.h>
|
||||
#include <Winuser.h>
|
||||
|
||||
#else
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user