mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
Fixed error in parsing.
svn-id: r34093
This commit is contained in:
parent
b9ac54024a
commit
fc4256ca85
@ -497,7 +497,7 @@ DECLARE_LOCATION_PARSER(zeta) {
|
||||
_vm->_location._zeta1 = atoi(_tokens[2]);
|
||||
|
||||
if (_tokens[3][0] != '\0') {
|
||||
_vm->_location._zeta2 = atoi(_tokens[1]);
|
||||
_vm->_location._zeta2 = atoi(_tokens[3]);
|
||||
} else {
|
||||
_vm->_location._zeta2 = 50;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user