diff options
author | Johannes Schickel | 2008-12-11 13:32:50 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-12-11 13:32:50 +0000 |
commit | 7c05e9e72303718ebe7b39046a715c186279f9c6 (patch) | |
tree | a1dfc3ada2c4a13d1f4a637275764ece9a21c4ed | |
parent | c7fa7f888ac8d3dac31bba9ff93bb54f917ea9fe (diff) | |
download | scummvm-rg350-7c05e9e72303718ebe7b39046a715c186279f9c6.tar.gz scummvm-rg350-7c05e9e72303718ebe7b39046a715c186279f9c6.tar.bz2 scummvm-rg350-7c05e9e72303718ebe7b39046a715c186279f9c6.zip |
Fix for bug #2412503 "DW1: Subtitle menu not working (Multi-language version)".
svn-id: r35300
-rw-r--r-- | engines/tinsel/dialogs.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/tinsel/dialogs.cpp b/engines/tinsel/dialogs.cpp index 986a4bf936..9a98981f48 100644 --- a/engines/tinsel/dialogs.cpp +++ b/engines/tinsel/dialogs.cpp @@ -29,7 +29,13 @@ * And there's still a bit of tidying and commenting to do yet. */ -//#define USE_3FLAGS 1 +// This needs to be enabled to allow the subtitle selection +// menu to be working in some versions. For example see +// bug #2412503 "DW1: Subtitle menu not working (Multi-language version)". +// +// TODO: Think of removing this define alltogether and remove all checks +// for it. +#define USE_3FLAGS 1 #include "tinsel/actors.h" #include "tinsel/anim.h" |