aboutsummaryrefslogtreecommitdiff
path: root/saga/script.h
diff options
context:
space:
mode:
authorEugene Sandulenko2004-08-22 18:28:42 +0000
committerEugene Sandulenko2004-08-22 18:28:42 +0000
commitbfd0b427000b651e2964ffbe04eb9bce4f06dae4 (patch)
treeb020bc96226a40cd52f287812376ecffc2bf506c /saga/script.h
parent4f51ae998842324c268a08a6b88ca9e6f8b84c4e (diff)
downloadscummvm-rg350-bfd0b427000b651e2964ffbe04eb9bce4f06dae4.tar.gz
scummvm-rg350-bfd0b427000b651e2964ffbe04eb9bce4f06dae4.tar.bz2
scummvm-rg350-bfd0b427000b651e2964ffbe04eb9bce4f06dae4.zip
o Eliminate all structure _tags.
o Fix RSCFile on MSVC8. o Started fixing script opcodes. svn-id: r14686
Diffstat (limited to 'saga/script.h')
-rw-r--r--saga/script.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/saga/script.h b/saga/script.h
index 46ef3b5f9b..9baf427faa 100644
--- a/saga/script.h
+++ b/saga/script.h
@@ -71,7 +71,7 @@ struct R_SEMAPHORE {
int hold_count;
};
-struct R_SCRIPT_THREAD_tag {
+struct R_SCRIPT_THREAD {
int executing;
int sleep_time;
@@ -83,8 +83,6 @@ struct R_SCRIPT_THREAD_tag {
Common::Stack<SDataWord_T> *stack;
};
-typedef struct R_SCRIPT_THREAD_tag R_SCRIPT_THREAD;
-
struct R_PROC_TBLENTRY {
size_t name_offset;
size_t offset;