Fixed typo (which seems like a nasty bug)

svn-id: r34994
This commit is contained in:
Filippos Karapetis 2008-11-10 21:53:39 +00:00
parent 0032f2743e
commit 1914f20c38

View File

@ -1289,7 +1289,7 @@ void TuckerEngine::saveOrLoad() {
}
if (_leftMouseButtonPressed && _mouseClick == 0) {
_mouseClick = 1;
if (_mousePosX > 228 && _mousePosX < 240 && _mousePosY > 154 & _mousePosY < 170) {
if (_mousePosX > 228 && _mousePosX < 240 && _mousePosY > 154 && _mousePosY < 170) {
if (_firstSaveGameSlot < _lastSaveGameSlot) {
++_firstSaveGameSlot;
_forceRedrawPanelItems = 1;