aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/state.h
diff options
context:
space:
mode:
authorColin Snover2017-10-04 13:23:44 -0500
committerColin Snover2017-12-01 18:48:35 -0600
commit57db3f7535458504f308ea76e87167cf7ee95371 (patch)
treec73da99294cebdd56e47bda374c626b94525eeee /engines/sci/engine/state.h
parentf9f5692e0388e06af5c51d2937f07f28175652c2 (diff)
downloadscummvm-rg350-57db3f7535458504f308ea76e87167cf7ee95371.tar.gz
scummvm-rg350-57db3f7535458504f308ea76e87167cf7ee95371.tar.bz2
scummvm-rg350-57db3f7535458504f308ea76e87167cf7ee95371.zip
SCI: Partially clean up SCI16 video playback code
Diffstat (limited to 'engines/sci/engine/state.h')
-rw-r--r--engines/sci/engine/state.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/engines/sci/engine/state.h b/engines/sci/engine/state.h
index 21c9a1fe9a..a299d89446 100644
--- a/engines/sci/engine/state.h
+++ b/engines/sci/engine/state.h
@@ -83,18 +83,6 @@ enum VideoFlags {
kStretch = 1 << 8
};
-struct VideoState {
- Common::String fileName;
- uint16 x;
- uint16 y;
- uint16 flags;
-
- void reset() {
- fileName = "";
- x = y = flags = 0;
- }
-};
-
/**
* Trace information about a VM function call.
*/
@@ -212,9 +200,6 @@ public:
uint16 _memorySegmentSize;
byte _memorySegment[kMemorySegmentMax];
- // TODO: Excise video code from the state manager
- VideoState _videoState;
-
/**
* Resets the engine state.
*/