Skip to content

Commit

Permalink
CHEWY: Fix game state synchronization - bug #13671
Browse files Browse the repository at this point in the history
There were two instances of the Text class, which led to
desynchronization of the saved game data
  • Loading branch information
bluegr committed Jul 10, 2022
1 parent 7ce29e8 commit 35e238e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/chewy/atds.cpp
Expand Up @@ -84,7 +84,7 @@ Atdsys::Atdsys() {
_invBlockNr = -1;

_dialogResource = new DialogResource(ADS_TXT_STEUER);
_text = new Text();
_text = _G(txt);

_dialogCloseupNextBlock._blkNr = 0;
_dialogCloseupNextBlock._endNr = 0;
Expand Down

0 comments on commit 35e238e

Please sign in to comment.