aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/script.h
diff options
context:
space:
mode:
authorJohannes Schickel2009-10-04 17:54:08 +0000
committerJohannes Schickel2009-10-04 17:54:08 +0000
commiteaca55ee50172ce98e0a53629251602884dcb918 (patch)
tree3a0cf18b1f70d619d460fcf5dba2bf06cf41be66 /engines/kyra/script.h
parent41e4a1ddb6b515f932f445dabbbba28351472315 (diff)
downloadscummvm-rg350-eaca55ee50172ce98e0a53629251602884dcb918.tar.gz
scummvm-rg350-eaca55ee50172ce98e0a53629251602884dcb918.tar.bz2
scummvm-rg350-eaca55ee50172ce98e0a53629251602884dcb918.zip
Some fixes to comply with our coding guidelines.
svn-id: r44624
Diffstat (limited to 'engines/kyra/script.h')
-rw-r--r--engines/kyra/script.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/script.h b/engines/kyra/script.h
index 862cfb7d97..bfe188d22a 100644
--- a/engines/kyra/script.h
+++ b/engines/kyra/script.h
@@ -58,8 +58,8 @@ struct EMCState {
int16 retValue;
uint16 bp;
uint16 sp;
- int16 regs[30]; // VM registers
- int16 stack[kStackSize]; // VM stack
+ int16 regs[30]; // VM registers
+ int16 stack[kStackSize]; // VM stack
};
#define stackPos(x) (script->stack[script->sp+x])