diff options
author | Max Horn | 2002-12-14 11:53:58 +0000 |
---|---|---|
committer | Max Horn | 2002-12-14 11:53:58 +0000 |
commit | b27db90bb19bc8470201b7463ef2216ed1811165 (patch) | |
tree | c318d4360be895183391c58e5941b887e1a4e571 | |
parent | 7a0a05a49a45f7b2076c5edaf3cf0872ae3de514 (diff) | |
download | scummvm-rg350-b27db90bb19bc8470201b7463ef2216ed1811165.tar.gz scummvm-rg350-b27db90bb19bc8470201b7463ef2216ed1811165.tar.bz2 scummvm-rg350-b27db90bb19bc8470201b7463ef2216ed1811165.zip |
fixed VC++ compile
svn-id: r5950
-rw-r--r-- | common/gameDetector.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/gameDetector.h b/common/gameDetector.h index 6615bebc5b..643fbe1cc2 100644 --- a/common/gameDetector.h +++ b/common/gameDetector.h @@ -88,15 +88,15 @@ enum GameFeatures { struct VersionSettings { const char *filename; const char *gamename; - const byte id, major, middle, minor; - const uint32 features; - const char *detectname; + byte id, major, middle, minor; + uint32 features; + char *detectname; }; struct MusicDrivers { const char *name; const char *description; - const int id; + int id; }; struct GraphicsModes { |