| 859 | // HACK: Correct positions of text in the grail diary in Indy3 Mac |
| 860 | if (_game.id == GID_INDY3 && _game.platform == Common::kPlatformMacintosh && a == 1) { |
| 861 | if (_currentRoom == 75) { |
| 862 | if (_charset->_startLeft < 160) |
| 863 | _charset->_startLeft = _charset->_left = _string[a].xpos - 22; |
| 864 | else if (_charset->_startLeft < 200) |
| 865 | _charset->_startLeft = _charset->_left = _string[a].xpos - 10; |
| 866 | } else if (_currentRoom == 69) { |
| 867 | if (_charset->_startLeft < 160) |
| 868 | _charset->_startLeft = _charset->_left = _string[a].xpos - 15; |
| 869 | else if (_charset->_startLeft < 200) |
| 870 | _charset->_startLeft = _charset->_left = _string[a].xpos - 10; |
| 871 | } else if (_currentRoom == 90) { |
| 872 | if (_charset->_startLeft < 160) |
| 873 | _charset->_startLeft = _charset->_left = _string[a].xpos - 21; |
| 874 | else if (_charset->_startLeft < 200) |
| 875 | _charset->_startLeft = _charset->_left = _string[a].xpos - 15; |
| 876 | } |
| 877 | } |
| 878 | |