mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-03 06:39:07 +00:00
LibKeyboard: Use correct filename in debug message
This commit is contained in:
parent
484ec94624
commit
0e4dc5f7a1
Notes:
sideshowbarker
2024-07-18 14:41:21 +09:00
Author: https://github.com/NonStandardModel
Commit: 0e4dc5f7a1
Pull-request: https://github.com/SerenityOS/serenity/pull/7789
1 changed files with 4 additions and 2 deletions
|
@ -25,14 +25,16 @@ Optional<CharacterMapData> CharacterMapFile::load_from_file(const String& filena
|
|||
auto file = Core::File::construct(path);
|
||||
file->open(Core::OpenMode::ReadOnly);
|
||||
if (!file->is_open()) {
|
||||
dbgln("Failed to open {}: {}", filename, file->error_string());
|
||||
dbgln("Failed to open {}: {}", path, file->error_string());
|
||||
return {};
|
||||
}
|
||||
|
||||
auto file_contents = file->read_all();
|
||||
auto json_result = JsonValue::from_string(file_contents);
|
||||
if (!json_result.has_value())
|
||||
if (!json_result.has_value()) {
|
||||
dbgln("Failed to load character map from file {}", path);
|
||||
return {};
|
||||
}
|
||||
auto json = json_result.value().as_object();
|
||||
|
||||
Vector<u32> map = read_map(json, "map");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue