Skip to content

Commit

Permalink
ACCESS: Add a missing ->data() on _eseg
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Aug 30, 2014
1 parent 469e327 commit 36b87d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/access/amazon/amazon_game.cpp
Expand Up @@ -274,7 +274,7 @@ void AmazonEngine::doEstablish(int esatabIndex, int sub) {
_screen->_printOrg = _screen->_printStart = Common::Point(48, 35);
loadEstablish(sub);
_et = sub;
uint16 msgOffset = READ_LE_UINT16(_eseg + (sub * 2) + 2);
uint16 msgOffset = READ_LE_UINT16(_eseg->data() + (sub * 2) + 2);

_printEnd = 155;
if (_txtPages == 0) {
Expand Down

0 comments on commit 36b87d3

Please sign in to comment.