diff options
author | Max Horn | 2009-02-21 22:06:42 +0000 |
---|---|---|
committer | Max Horn | 2009-02-21 22:06:42 +0000 |
commit | 8430b662a99d96100fbeb3428a61595444fc3526 (patch) | |
tree | 2c0421af6635c6496905d6fb95c8e9de2a0487c4 /engines/sci/sfx/sfx_time.h | |
parent | da190b30fcf79edb14b58e560b243f797fb17820 (diff) | |
download | scummvm-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_time.h')
-rw-r--r-- | engines/sci/sfx/sfx_time.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sfx/sfx_time.h b/engines/sci/sfx/sfx_time.h index d362dfa381..ebb6824e1d 100644 --- a/engines/sci/sfx/sfx_time.h +++ b/engines/sci/sfx/sfx_time.h @@ -28,13 +28,13 @@ namespace Sci { -typedef struct { +struct sfx_timestamp_t { long secs; long usecs; int frame_rate; int frame_offset; /* Total time: secs + usecs + frame_offset/frame_rate */ -} sfx_timestamp_t; +}; sfx_timestamp_t sfx_new_timestamp(long secs, long usecs, int frame_rate); |