diff options
author | Paul Gilbert | 2016-02-14 18:10:20 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-02-14 18:10:20 -0500 |
commit | 64d40caecd6a3c7aa75c1ebe043c587421db0e9c (patch) | |
tree | e6d4614ef2ecfac2a3b7295e019de55a84ca54c2 /engines | |
parent | 956aacf83be4da7991fe1a0947e54e44ea4126fd (diff) | |
download | scummvm-rg350-64d40caecd6a3c7aa75c1ebe043c587421db0e9c.tar.gz scummvm-rg350-64d40caecd6a3c7aa75c1ebe043c587421db0e9c.tar.bz2 scummvm-rg350-64d40caecd6a3c7aa75c1ebe043c587421db0e9c.zip |
SHERLOCK: RT: Fix starting different darts game modes
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sherlock/tattoo/tattoo_darts.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sherlock/tattoo/tattoo_darts.cpp b/engines/sherlock/tattoo/tattoo_darts.cpp index 512358933d..a430ad5a62 100644 --- a/engines/sherlock/tattoo/tattoo_darts.cpp +++ b/engines/sherlock/tattoo/tattoo_darts.cpp @@ -85,6 +85,9 @@ void Darts::playDarts(GameType gameType) { bool done = false; const char *const NUM_HITS_STR[3] = { "a", FIXED(Double), FIXED(Triple) }; + // Set the game mode + _gameType = gameType; + screen.setFont(7); _spacing = screen.fontHeight() + 2; |