From 2eb6f833142091e472520a986665ad1971166cb0 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Tue, 31 May 2022 22:38:27 -0700 Subject: [PATCH] fix vb when not recording a movie in input display lua --- Assets/Lua/Input_Display.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Lua/Input_Display.lua b/Assets/Lua/Input_Display.lua index 8b866f0f74..b3324a9835 100644 --- a/Assets/Lua/Input_Display.lua +++ b/Assets/Lua/Input_Display.lua @@ -323,7 +323,7 @@ end while sys == 'VB' do if movie.mode() == 'PLAY' then c = movie.getinput(emu.framecount() - 1, 1) - else c = joypad.get() end + else c = joypad.get(1) end x = xpos y = ypos @@ -1051,4 +1051,4 @@ while sys == 'PSX' do end emu.frameadvance() -end \ No newline at end of file +end