diff options
author | Strangerke | 2014-02-19 21:01:14 +0100 |
---|---|---|
committer | Strangerke | 2014-02-19 21:02:22 +0100 |
commit | 2f0b6c7e95817ec5848f2bfae6226a10f7a0ce25 (patch) | |
tree | 0400de7f24089494c09c184a6a850927ffaecd1f /engines | |
parent | 7970cddb1f81d584917376838c9d43b7118c852e (diff) | |
download | scummvm-rg350-2f0b6c7e95817ec5848f2bfae6226a10f7a0ce25.tar.gz scummvm-rg350-2f0b6c7e95817ec5848f2bfae6226a10f7a0ce25.tar.bz2 scummvm-rg350-2f0b6c7e95817ec5848f2bfae6226a10f7a0ce25.zip |
VOYEUR: Set private some functions in ThreadResources
Diffstat (limited to 'engines')
-rw-r--r-- | engines/voyeur/files.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/engines/voyeur/files.h b/engines/voyeur/files.h index 511a7f6fc3..f2fd918aba 100644 --- a/engines/voyeur/files.h +++ b/engines/voyeur/files.h @@ -549,14 +549,6 @@ public: byte _buttonIds[64]; byte *_ctlPtr; byte *_playCommandsPtr; -public: - ThreadResource(BoltFilesState &state, const byte *src); - virtual ~ThreadResource() {} - - /** - * Initialize the thread - */ - void initThreadStruct(int idx, int id); /** * Loads the specified stack @@ -569,14 +561,23 @@ public: void unloadAStack(int stackId); /** - * Go to a new state and/or stack + * Initializes data for the thread based on the current state */ - bool goToState(int stackId, int stateId); + bool doState(); + +public: + ThreadResource(BoltFilesState &state, const byte *src); + virtual ~ThreadResource() {} /** - * Initializes data for the thread based on the current state + * Initialize the thread */ - bool doState(); + void initThreadStruct(int idx, int id); + + /** + * Go to a new state and/or stack + */ + bool goToState(int stackId, int stateId); bool chooseSTAMPButton(int buttonId); |