aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/vm.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/engine/vm.h')
-rw-r--r--engines/sci/engine/vm.h26
1 files changed, 12 insertions, 14 deletions
diff --git a/engines/sci/engine/vm.h b/engines/sci/engine/vm.h
index 31433555e4..a4ac16ea32 100644
--- a/engines/sci/engine/vm.h
+++ b/engines/sci/engine/vm.h
@@ -137,20 +137,18 @@ enum {
};
enum GlobalVar {
- kEgo = 0,
- kGame = 1,
- kCurrentRoom = 2,
- kSpeed = 3, // SCI16
- kDefaultPlane = 3, // SCI32
- kQuit = 4,
- kPlanes = 10, // SCI32
- kCurrentRoomNo = 11,
- kPreviousRoomNo = 12,
- kNewRoomNo = 13,
- kScore = 15,
- kFastCast = 84, // SCI16
- kMessageType = 90,
- kShivers1Score = 349
+ kGlobalVarEgo = 0,
+ kGlobalVarCurrentRoom = 2,
+ kGlobalVarSpeed = 3, // SCI16
+ kGlobalVarQuit = 4,
+ kGlobalVarPlanes = 10, // SCI32
+ kGlobalVarCurrentRoomNo = 11,
+ kGlobalVarPreviousRoomNo = 12,
+ kGlobalVarNewRoomNo = 13,
+ kGlobalVarScore = 15,
+ kGlobalVarFastCast = 84, // SCI16
+ kGlobalVarMessageType = 90,
+ kGlobalVarShivers1Score = 349
};
/** Number of kernel calls in between gcs; should be < 50000 */