From 5ea3b8f9cd7e183e947187ffa62348b70bf6048d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 25 Feb 2006 00:46:56 +0000 Subject: - 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 --- engines/cine/script.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/cine/script.h') 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 -- cgit v1.2.3