diff options
| author | Kyler "Félix" Eastridge <felix.wolfz@gmail.com> | 2026-01-20 16:22:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-20 16:22:09 -0500 |
| commit | d0db6a49eb7c7dddcde2a340c8ad6c1f1af6e2cf (patch) | |
| tree | 682cd108e5c06be003a927907a9d658164d31b40 /indra/llwindow/llwindowsdl.cpp | |
| parent | 8bacd29bcb36b87ca237fe3ff9459461c1a4cf55 (diff) | |
Refactor SDL references to remove version specificity and improve clarity (#5285)
Diffstat (limited to 'indra/llwindow/llwindowsdl.cpp')
| -rw-r--r-- | indra/llwindow/llwindowsdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwindow/llwindowsdl.cpp b/indra/llwindow/llwindowsdl.cpp index 3fc0257a7f..2d8a74c782 100644 --- a/indra/llwindow/llwindowsdl.cpp +++ b/indra/llwindow/llwindowsdl.cpp @@ -1815,7 +1815,7 @@ LLSD LLWindowSDL::getNativeKeyData() // *todo: NUM? - I don't care enough right now (and it's not a GDK modifier). result["virtual_key"] = (S32)mKeyVirtualKey; - result["virtual_key_win"] = (S32)LLKeyboardSDL::mapSDL2toWin( mKeyVirtualKey ); + result["virtual_key_win"] = (S32)LLKeyboardSDL::mapSDLtoWin( mKeyVirtualKey ); result["modifiers"] = (S32)modifiers; return result; } |
