From 7a5ba4935629df818e6e24535e2b3a4ff0025607 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sat, 16 Jun 2018 00:50:22 +0200 Subject: [PATCH] don't turbo in playback mode --- main.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.lua b/main.lua index bf33656..7e4f157 100644 --- a/main.lua +++ b/main.lua @@ -474,7 +474,8 @@ local function init() emu.poweron() emu.unpause() - if not cfg.playable_mode then emu.speedmode("turbo") end + local playing = cfg.playable_mode or cfg.playback_mode + if not playing then emu.speedmode("turbo") end if not any_random then loadlevel(cfg.starting_world, cfg.starting_level)