aboutsummaryrefslogtreecommitdiff
path: root/saga/text.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/text.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/text.h')
-rw-r--r--saga/text.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/saga/text.h b/saga/text.h
index 668403fa5f..1bdcf3c5f1 100644
--- a/saga/text.h
+++ b/saga/text.h
@@ -34,7 +34,7 @@ namespace Saga {
#define R_TEXT_MARGIN 10
#define R_TEXT_LINESPACING 2
-struct R_TEXTLIST_tag {
+struct R_TEXTLIST {
YS_DL_LIST *list;
};
@@ -43,8 +43,8 @@ enum R_TEXT_FLAGS {
};
struct R_TEXTLIST_ENTRY {
- struct R_TEXTLIST_ENTRY_tag *next;
- struct R_TEXTLIST_ENTRY_tag *prev;
+ R_TEXTLIST_ENTRY *next;
+ R_TEXTLIST_ENTRY *prev;
int display;
int id;
int text_x;
@@ -58,7 +58,6 @@ struct R_TEXTLIST_ENTRY {
R_TEXTLIST_ENTRY() { memset(this, 0, sizeof(*this)); }
};
-typedef struct R_TEXTLIST_tag R_TEXTLIST;
} // End of namespace Saga
#endif