Replaced the platform specific GF_FOO switches (using _platform instead now)
svn-id: r17716
This commit is contained in:
parent
a18d4d5c2f
commit
c46ea8bc40
29 changed files with 165 additions and 202 deletions
|
@ -1093,7 +1093,7 @@ void ScummEngine_v60he::o60_readFile() {
|
|||
int val;
|
||||
|
||||
// Fatty Bear uses positive values
|
||||
if ((_features & GF_PC) && (_gameId == GID_FBEAR))
|
||||
if ((_platform == Common::kPlatformPC) && (_gameId == GID_FBEAR))
|
||||
size = -size;
|
||||
|
||||
if (size == -2) {
|
||||
|
@ -1121,7 +1121,7 @@ void ScummEngine_v60he::o60_writeFile() {
|
|||
int slot = pop();
|
||||
|
||||
// Fatty Bear uses positive values
|
||||
if ((_features & GF_PC) && (_gameId == GID_FBEAR))
|
||||
if ((_platform == Common::kPlatformPC) && (_gameId == GID_FBEAR))
|
||||
size = -size;
|
||||
|
||||
if (size == -2) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue