aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/script.h
diff options
context:
space:
mode:
authorMax Horn2006-02-25 00:46:56 +0000
committerMax Horn2006-02-25 00:46:56 +0000
commit5ea3b8f9cd7e183e947187ffa62348b70bf6048d (patch)
treecaa016227bbc45831ff4b91f51c8d33b774f1498 /engines/cine/script.h
parente35eb1dd2fef9b434c14cbfb4b4c04640a16f418 (diff)
downloadscummvm-rg350-5ea3b8f9cd7e183e947187ffa62348b70bf6048d.tar.gz
scummvm-rg350-5ea3b8f9cd7e183e947187ffa62348b70bf6048d.tar.bz2
scummvm-rg350-5ea3b8f9cd7e183e947187ffa62348b70bf6048d.zip
- avoid using typedef for structs (it is just not necessary in C++)
- added a const/static here and there - started to reduce header dependencies svn-id: r20856
Diffstat (limited to 'engines/cine/script.h')
-rw-r--r--engines/cine/script.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cine/script.h b/engines/cine/script.h
index 592a388a65..2fd598266f 100644
--- a/engines/cine/script.h
+++ b/engines/cine/script.h
@@ -29,11 +29,11 @@ namespace Cine {
#define SCRIPT_STACK_SIZE 50
-typedef struct {
+struct scriptStruct {
byte *ptr;
uint16 var4;
int16 stack[SCRIPT_STACK_SIZE];
-} scriptStruct;
+};
#define NUM_MAX_SCRIPT 50