- Updated MSVC8 project files
- Renamed base/options.cpp to base/commandLine.cpp because of conflict with gui/options.cpp which sit in same directory in MSVC builds - Moved AudioCDManager singleton declaration outside of Audio namespace - Fixed numerous MSVC warning of potentially uninitialized variables and int <-> bool conversions. svn-id: r22397
This commit is contained in:
parent
4c67122463
commit
d2546e3979
18 changed files with 144 additions and 33 deletions
|
@ -606,7 +606,7 @@ void ScummEngine::writeVar(uint var, int value) {
|
|||
if (_game.heversion <= 73 && vm.slot[_currentScript].number == 1)
|
||||
return;
|
||||
assert(value == 0 || value == 1);
|
||||
ConfMan.setBool("subtitles", value);
|
||||
ConfMan.setBool("subtitles", (value != 0));
|
||||
}
|
||||
if (VAR_NOSUBTITLES != 0xFF && var == VAR_NOSUBTITLES) {
|
||||
// Ignore default setting in HE60-71 games
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue