diff options
author | Travis Howell | 2003-11-20 04:27:46 +0000 |
---|---|---|
committer | Travis Howell | 2003-11-20 04:27:46 +0000 |
commit | 4d4ba9ea558dafd67e198065b8fe7b05dfc6acfa (patch) | |
tree | 08c93f0b8221310b27ae9185b04586a1024e3362 /scumm | |
parent | b8c0fbf06ef0624ed1e9f1a5af82b7a15165af22 (diff) | |
download | scummvm-rg350-4d4ba9ea558dafd67e198065b8fe7b05dfc6acfa.tar.gz scummvm-rg350-4d4ba9ea558dafd67e198065b8fe7b05dfc6acfa.tar.bz2 scummvm-rg350-4d4ba9ea558dafd67e198065b8fe7b05dfc6acfa.zip |
Ooops
svn-id: r11351
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index f13110adb4..22ba012b06 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -2837,7 +2837,8 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) { game.features |= GF_MACINTOSH; break; default: - game.features |= GF_PC; + if (!(game.features & GF_FMTOWNS)) + game.features |= GF_PC; break; } |