Skip to content

Commit d9b77c4

Browse files
committed
Fixed Key::NUM_ZERO being mapped incorrectly to NUM_NINE
1 parent 8f077f6 commit d9b77c4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

assets/Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@ Fixed the `std::span` returned by `FileHandle::memory_map` being improperly size
167167

168168
Fixed 'File::Handle' unable to be moved if used in conjunction with memory_map. ([UE4SS #544](https://github.com/UE4SS-RE/RE-UE4SS/pull/544))
169169

170+
Fixed `Key::NUM_ZERO` being incorrectly mapped to `Key::NUM_NINE`. ([UE4SS #716](https://github.com/UE4SS-RE/RE-UE4SS/pull/716))
171+
170172
### BPModLoader
171173
Fixed "bad conversion" errors ([UE4SS #398](https://github.com/UE4SS-RE/RE-UE4SS/pull/398))
172174

deps/first/Input/include/Input/KeyDef.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ namespace RC::Input
109109
APPS = 0x5D,
110110
// RESERVED = 0x5E,
111111
SLEEP = 0x5F,
112-
NUM_ZERO = 0x69,
112+
NUM_ZERO = 0x60,
113113
NUM_ONE = 0x61,
114114
NUM_TWO = 0x62,
115115
NUM_THREE = 0x63,

0 commit comments

Comments
 (0)