aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/gfxengine.h
diff options
context:
space:
mode:
authorPaul Gilbert2012-05-09 00:42:27 +1000
committerPaul Gilbert2012-05-09 00:42:27 +1000
commit26898dd7ad399a641f63eabf04aa2d839f8508fc (patch)
tree7662cd1fc594e4d1c3ef2750c215a552a1c98bf7 /engines/tony/gfxengine.h
parenta254f100253bda1b23f280226b7b4d909206d49c (diff)
downloadscummvm-rg350-26898dd7ad399a641f63eabf04aa2d839f8508fc.tar.gz
scummvm-rg350-26898dd7ad399a641f63eabf04aa2d839f8508fc.tar.bz2
scummvm-rg350-26898dd7ad399a641f63eabf04aa2d839f8508fc.zip
TONY: Completed bulk of initial coro refactoring
Diffstat (limited to 'engines/tony/gfxengine.h')
-rw-r--r--engines/tony/gfxengine.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tony/gfxengine.h b/engines/tony/gfxengine.h
index 42b2050046..11d591b408 100644
--- a/engines/tony/gfxengine.h
+++ b/engines/tony/gfxengine.h
@@ -85,7 +85,7 @@ private:
OSystem::MutexRef csMainLoop;
int m_nWipeType;
- HANDLE m_hWipeEvent;
+ uint32 m_hWipeEvent;
int m_nWipeStep;
bool m_bMustEnterMenu;
@@ -103,7 +103,7 @@ public:
virtual ~RMGfxEngine();
// Draw the next frame
- void DoFrame(bool bDrawLocation);
+ void DoFrame(CORO_PARAM, bool bDrawLocation);
// Initialises the graphics engine
void Init();
@@ -118,7 +118,7 @@ public:
void GDIControl(bool bCon);
// Warns when entering or exits the options menu
- void OpenOptionScreen(int type);
+ void OpenOptionScreen(CORO_PARAM, int type);
// Enables or disables mouse input
void EnableInput(void);
@@ -157,7 +157,7 @@ public:
// Wipe
void InitWipe(int type);
void CloseWipe(void);
- void WaitWipeEnd(void);
+ void WaitWipeEnd(CORO_PARAM);
void SetPalesati(bool bpal) { m_inter.SetPalesati(bpal); }
};