diff options
author | BLooperZ | 2019-10-14 21:18:04 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-18 02:02:14 +0100 |
commit | 656246d50d1dabb13b6a1b123a58c06ef8c18524 (patch) | |
tree | 23dc09b44d8273cbb085a0d5d72e2c59637c55ea /engines/toon | |
parent | 2a21ef0bb6a3aa22ba2a681f7273364f0c33b7d5 (diff) | |
download | scummvm-rg350-656246d50d1dabb13b6a1b123a58c06ef8c18524.tar.gz scummvm-rg350-656246d50d1dabb13b6a1b123a58c06ef8c18524.tar.bz2 scummvm-rg350-656246d50d1dabb13b6a1b123a58c06ef8c18524.zip |
TOON: typedef not needed
Diffstat (limited to 'engines/toon')
-rw-r--r-- | engines/toon/subtitles.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/toon/subtitles.h b/engines/toon/subtitles.h index 0d2575e78f..41b12638a1 100644 --- a/engines/toon/subtitles.h +++ b/engines/toon/subtitles.h @@ -28,11 +28,11 @@ namespace Toon { -typedef struct { +struct TimeWindow { uint32 fstart; uint32 fend; uint32 foffset; -} TimeWindow; +}; class SubtitleRenderer { public: |