diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp index 4fa69e83a47..c2f42b659d8 100644 --- a/engines/mohawk/livingbooks.cpp +++ b/engines/mohawk/livingbooks.cpp @@ -2272,7 +2272,7 @@ void LBItem::stop() { void LBItem::notify(uint16 data, uint16 from) { if (_timingMode == kLBAutoSync) { // TODO: is this correct? - if (_periodMin == from && _periodMax == data) { + if (_periodMin == data && _periodMax == from) { debug(2, "Handling notify 0x%04x (from %d)", data, from); setNextTime(0, 0); }