mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 01:37:49 +00:00
Fixed logging output
This commit is contained in:
parent
55b6b3cada
commit
8ce11701a9
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ void GetKeyCodeMapImpl(Kernel::HLERequestContext& ctx) {
|
||||||
KeyboardLayout layout = KeyboardLayout::EnglishUs;
|
KeyboardLayout layout = KeyboardLayout::EnglishUs;
|
||||||
if (key_code == language_to_layout.cend()) {
|
if (key_code == language_to_layout.cend()) {
|
||||||
LOG_ERROR(Service_SET,
|
LOG_ERROR(Service_SET,
|
||||||
"Could not find keyboard layout for language index {} defaulting to english us",
|
"Could not find keyboard layout for language index {}, defaulting to English us",
|
||||||
Settings::values.language_index);
|
Settings::values.language_index);
|
||||||
} else {
|
} else {
|
||||||
layout = key_code->second;
|
layout = key_code->second;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue