mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-23 01:59:19 +01:00
Fix unicode characters being turned into emojis for some vendors
This commit is contained in:
parent
b7b0f07ba8
commit
df120ab76d
@ -26,10 +26,10 @@ enum class ButtonId(val short : String? = null, val long : Int? = null) {
|
|||||||
ZR("ZR", string.right_trigger),
|
ZR("ZR", string.right_trigger),
|
||||||
Plus("+", string.plus_button),
|
Plus("+", string.plus_button),
|
||||||
Minus("-", string.minus_button),
|
Minus("-", string.minus_button),
|
||||||
DpadLeft("◀", string.left),
|
DpadLeft("◀︎", string.left),
|
||||||
DpadUp("▲", string.up),
|
DpadUp("▲︎", string.up),
|
||||||
DpadRight("▶", string.right),
|
DpadRight("▶︎", string.right),
|
||||||
DpadDown("▼", string.down),
|
DpadDown("▼︎", string.down),
|
||||||
LeftStickLeft,
|
LeftStickLeft,
|
||||||
LeftStickUp,
|
LeftStickUp,
|
||||||
LeftStickRight,
|
LeftStickRight,
|
||||||
@ -42,7 +42,7 @@ enum class ButtonId(val short : String? = null, val long : Int? = null) {
|
|||||||
LeftSR("SR", string.right_shoulder),
|
LeftSR("SR", string.right_shoulder),
|
||||||
RightSL("SL", string.left_shoulder),
|
RightSL("SL", string.left_shoulder),
|
||||||
RightSR("SR", string.right_shoulder),
|
RightSR("SR", string.right_shoulder),
|
||||||
Menu("⌂", string.emu_menu_button);
|
Menu("⌂︎", string.emu_menu_button);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This returns the value as setting the [ordinal]-th bit in a [Long]
|
* This returns the value as setting the [ordinal]-th bit in a [Long]
|
||||||
|
Loading…
Reference in New Issue
Block a user