Skip to content

Commit

Permalink
win32_wrap: fix mouse buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Splendide-Imaginarius committed Jul 29, 2024
1 parent 68a508b commit 3e7ddd0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/preload/win32_wrap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# all copyright and related or neighboring rights to win32_wrap.rb.
# https://creativecommons.org/publicdomain/zero/1.0/

# Edits by Splendide Imaginarius (2023) also CC0.
# Edits by Splendide Imaginarius (2023-2024) also CC0.

# This preload script provides a subset of Win32API in a cross-platform way, so
# you can play Win32API-based games on Linux and macOS.
Expand Down Expand Up @@ -183,17 +183,17 @@ def common_keystate(vkey)
states = get_raw_keystates
pressed = false

if vkey == :LBUTTON
if vkey_name == :LBUTTON
pressed = Input.press?(Input::MOUSELEFT)
elsif vkey == :RBUTTON
elsif vkey_name == :RBUTTON
pressed = Input.press?(Input::MOUSERIGHT)
elsif vkey == :MBUTTON
elsif vkey_name == :MBUTTON
pressed = Input.press?(Input::MOUSEMIDDLE)
elsif vkey == :SHIFT
elsif vkey_name == :SHIFT
pressed = double_state(states, :LSHIFT, :RSHIFT)
elsif vkey == :MENU
elsif vkey_name == :MENU
pressed = double_state(states, :LALT, :RALT)
elsif vkey == :CONTROL
elsif vkey_name == :CONTROL
pressed = double_state(states, :LCTRL, :RCTRL)
else
scan = nil
Expand Down

0 comments on commit 3e7ddd0

Please sign in to comment.