aboutsummaryrefslogtreecommitdiff
path: root/saga/events.cpp
diff options
context:
space:
mode:
authorMax Horn2004-04-25 14:42:14 +0000
committerMax Horn2004-04-25 14:42:14 +0000
commitd4f876b37df0fdc772936eedf9b112802987254b (patch)
treec7e782e5846dd153159c574ca9cb2ca250dfd34f /saga/events.cpp
parentf9cd78cedd48371f8aa9d98cbcdeb879fe543fac (diff)
downloadscummvm-rg350-d4f876b37df0fdc772936eedf9b112802987254b.tar.gz
scummvm-rg350-d4f876b37df0fdc772936eedf9b112802987254b.tar.bz2
scummvm-rg350-d4f876b37df0fdc772936eedf9b112802987254b.zip
Fix many warnings; use C++ type system instead of C style typedefs; removed various unused stuff; const correctness; etc.
svn-id: r13622
Diffstat (limited to 'saga/events.cpp')
-rw-r--r--saga/events.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/saga/events.cpp b/saga/events.cpp
index f822d23b3e..700c9d90f6 100644
--- a/saga/events.cpp
+++ b/saga/events.cpp
@@ -518,8 +518,8 @@ int EVENT_ClearList(void)
YS_DL_NODE *walk_node;
YS_DL_NODE *next_node;
- struct R_EVENT_tag *chain_walk;
- struct R_EVENT_tag *next_chain;
+ R_EVENT *chain_walk;
+ R_EVENT *next_chain;
R_EVENT *event_p;
@@ -556,8 +556,8 @@ int EVENT_FreeList(void)
YS_DL_NODE *walk_node;
YS_DL_NODE *next_node;
- struct R_EVENT_tag *chain_walk;
- struct R_EVENT_tag *next_chain;
+ R_EVENT *chain_walk;
+ R_EVENT *next_chain;
R_EVENT *event_p;