Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
libretro-chailove
Commits
666a2351
Unverified
Commit
666a2351
authored
Sep 12, 2018
by
RobLoach
Committed by
GitHub
Sep 12, 2018
Browse files
Add support for OEM-102 (#309)
* Update libretro-common * Update keyboard * fix oem button name * Update CHANGELOG.md
parent
32315e22
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
666a2351
...
...
@@ -6,7 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## 0.26.0 - Unreleased
### Features
-
Added a global
`require()`
function to load modules
-
Added a global
`require()`
function to load modules (
[
#308
](
https://github.com/libretro/libretro-chailove/pull/308
)
)
-
Added OEM-102 key support (sometimes
`\` on EUR keyboard) ([#309](https://github.com/libretro/libretro-chailove/pull/309))
## 0.25.1 - 2018-09-11
### Fixes
...
...
src/love/keyboard.cpp
View file @
666a2351
...
...
@@ -172,6 +172,7 @@ bool keyboard::load() {
scancodeToKey
[
RETROK_POWER
]
=
"power"
;
scancodeToKey
[
RETROK_EURO
]
=
"currencyunit"
;
scancodeToKey
[
RETROK_UNDO
]
=
"undo"
;
scancodeToKey
[
RETROK_OEM_102
]
=
"oem102"
;
// Initialize the key to scancode mappings.
for
(
i
=
0
;
i
<
RETROK_LAST
;
i
++
)
{
...
...
libretro-common
@
08ecd048
Compare
cda6a731
...
08ecd048
Subproject commit
cda6a73154bd81fe7c662893e65343c9b874e
4cc
Subproject commit
08ecd04802201920fec000778cd1fbacadc1
4cc
3
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment