diff options
| author | Andrei Prykhodko | 2018-06-30 15:31:01 +0300 |
|---|---|---|
| committer | Andrei Prykhodko | 2018-06-30 15:31:01 +0300 |
| commit | 516fbe05b3a2aad921222f9c503f16c6f9aab765 (patch) | |
| tree | 3374bbd3900b0c924de93bb571fac58568772b84 /engines/pink | |
| parent | d0adf31467fb2deea9a18f296f32d30cb7b6ed16 (diff) | |
| download | scummvm-rg350-516fbe05b3a2aad921222f9c503f16c6f9aab765.tar.gz scummvm-rg350-516fbe05b3a2aad921222f9c503f16c6f9aab765.tar.bz2 scummvm-rg350-516fbe05b3a2aad921222f9c503f16c6f9aab765.zip | |
PINK: fixed DecrementDomain command
Diffstat (limited to 'engines/pink')
| -rw-r--r-- | engines/pink/pda_mgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
