aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/sfx_engine.h
diff options
context:
space:
mode:
authorMax Horn2009-02-21 22:06:42 +0000
committerMax Horn2009-02-21 22:06:42 +0000
commit8430b662a99d96100fbeb3428a61595444fc3526 (patch)
tree2c0421af6635c6496905d6fb95c8e9de2a0487c4 /engines/sci/sfx/sfx_engine.h
parentda190b30fcf79edb14b58e560b243f797fb17820 (diff)
downloadscummvm-rg350-8430b662a99d96100fbeb3428a61595444fc3526.tar.gz
scummvm-rg350-8430b662a99d96100fbeb3428a61595444fc3526.tar.bz2
scummvm-rg350-8430b662a99d96100fbeb3428a61595444fc3526.zip
SCI: Changed typedef struct -> struct
svn-id: r38752
Diffstat (limited to 'engines/sci/sfx/sfx_engine.h')
-rw-r--r--engines/sci/sfx/sfx_engine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sfx/sfx_engine.h b/engines/sci/sfx/sfx_engine.h
index 60893e550f..20447c69c8 100644
--- a/engines/sci/sfx/sfx_engine.h
+++ b/engines/sci/sfx/sfx_engine.h
@@ -47,7 +47,7 @@ namespace Sci {
#define SFX_DEBUG_CUES (1 << 1) /* Debug cues, loops, and
** song completions */
-typedef struct {
+struct sfx_state_t {
song_iterator_t *it; /* The song iterator at the heart of things */
unsigned int flags; /* SFX_STATE_FLAG_* */
songlib_t songlib; /* Song library */
@@ -55,7 +55,7 @@ typedef struct {
int suspended; /* Whether we are suspended */
unsigned int debug; /* Debug flags */
-} sfx_state_t;
+};
/***********/
/* General */