diff options
| author | Filippos Karapetis | 2009-08-30 20:41:17 +0000 |
|---|---|---|
| committer | Filippos Karapetis | 2009-08-30 20:41:17 +0000 |
| commit | 32ff93bdc71cf51542b23c637f9be89f5b63b42f (patch) | |
| tree | 234eba92270188a6f4b18ea8db076571681c3b4f /graphics/video | |
| parent | 652b5b9c1fc6d53e273d2398bd528d51e290d0b7 (diff) | |
| download | scummvm-rg350-32ff93bdc71cf51542b23c637f9be89f5b63b42f.tar.gz scummvm-rg350-32ff93bdc71cf51542b23c637f9be89f5b63b42f.tar.bz2 scummvm-rg350-32ff93bdc71cf51542b23c637f9be89f5b63b42f.zip | |
Named some unnamed enums. Hopefully, this will fix compilation under WinCE.
svn-id: r43836
Diffstat (limited to 'graphics/video')
| -rw-r--r-- | graphics/video/avi_player.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/video/avi_player.h b/graphics/video/avi_player.h index 19126fe15d..ba96ce8ef5 100644 --- a/graphics/video/avi_player.h +++ b/graphics/video/avi_player.h @@ -111,11 +111,11 @@ struct AVIOLDINDEX { }; // Index Flags -enum { +enum IndexFlags { AVIIF_INDEX = 0x10 }; -enum { +enum WaveFormats { WAVE_INVALIDFORMAT = 0, WAVE_FORMAT_PCM = 1, WAVE_FORMAT_1M08 = 1, @@ -147,7 +147,7 @@ struct AVIHeader { }; // Flags from the AVIHeader -enum { +enum AviFlags { AVIF_HASINDEX = 0x00000010, AVIF_MUSTUSEINDEX = 0x00000020, AVIF_ISINTERLEAVED = 0x00000100, |
