aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/object.h
diff options
context:
space:
mode:
authorJohannes Schickel2009-09-20 23:34:48 +0000
committerJohannes Schickel2009-09-20 23:34:48 +0000
commit8daf7fbba880ab2ae623a823a1ad3b5d2ba96d6a (patch)
tree2c98f2aa94d73e3239026b34412894bce600823f /engines/cine/object.h
parent4d9258d3e56f45c87a279313098d3606c5e6d46e (diff)
downloadscummvm-rg350-8daf7fbba880ab2ae623a823a1ad3b5d2ba96d6a.tar.gz
scummvm-rg350-8daf7fbba880ab2ae623a823a1ad3b5d2ba96d6a.tar.bz2
scummvm-rg350-8daf7fbba880ab2ae623a823a1ad3b5d2ba96d6a.zip
Changed some type names to match our coding guidelines.
svn-id: r44224
Diffstat (limited to 'engines/cine/object.h')
-rw-r--r--engines/cine/object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cine/object.h b/engines/cine/object.h
index 3bf6cdcc42..e7c5144441 100644
--- a/engines/cine/object.h
+++ b/engines/cine/object.h
@@ -30,7 +30,7 @@
namespace Cine {
-struct objectStruct {
+struct ObjectStruct {
int16 x;
int16 y;
uint16 mask;
@@ -63,7 +63,7 @@ struct overlay {
#define NUM_MAX_OBJECT 255
#define NUM_MAX_VAR 255
-extern Common::Array<objectStruct> objectTable;
+extern Common::Array<ObjectStruct> objectTable;
extern Common::List<overlay> overlayList;
void resetObjectTable();