From 516fbe05b3a2aad921222f9c503f16c6f9aab765 Mon Sep 17 00:00:00 2001 From: Andrei Prykhodko Date: Sat, 30 Jun 2018 15:31:01 +0300 Subject: PINK: fixed DecrementDomain command --- engines/pink/pda_mgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/pink') diff --git a/engines/pink/pda_mgr.cpp b/engines/pink/pda_mgr.cpp index 411649b2f8..fbe6f4a0f0 100644 --- a/engines/pink/pda_mgr.cpp +++ b/engines/pink/pda_mgr.cpp @@ -82,7 +82,7 @@ void PDAMgr::execute(const Command &command) { updateWheels(1); break; case Command::kDecrementDomain: - _domainIndex = (_domainIndex + 6) % 8; + _domainIndex = (_domainIndex + 7) % 8; updateWheels(1); break; case Command::kClose: -- cgit v1.2.3