mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
Fix nits
This commit is contained in:
parent
5f3c5fe307
commit
bac526ce72
1 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <filesystem>
|
||||
#include <fstream>
|
||||
#include <map>
|
||||
#include <optional>
|
||||
#include <toml.hpp>
|
||||
|
@ -45,7 +46,7 @@ struct InputMappings {
|
|||
data["Mappings"] = toml::table{};
|
||||
|
||||
for (const auto& [scancode, key] : container) {
|
||||
if (data["Mappings"].contains(HID::Keys::keyToName(key)) == false) {
|
||||
if (!data["Mappings"].contains(HID::Keys::keyToName(key))) {
|
||||
data["Mappings"][HID::Keys::keyToName(key)] = toml::array{};
|
||||
}
|
||||
|
||||
|
@ -58,8 +59,8 @@ struct InputMappings {
|
|||
|
||||
static std::optional<InputMappings> deserialize(const std::filesystem::path& path, const std::string& wantFrontend) {
|
||||
toml::basic_value<toml::preserve_comments, std::map> data;
|
||||
|
||||
std::error_code error;
|
||||
|
||||
if (!std::filesystem::exists(path, error)) {
|
||||
if (error) {
|
||||
Helpers::warn("Filesystem error accessing %s (error: %s)\n", path.string().c_str(), error.message().c_str());
|
||||
|
|
Loading…
Add table
Reference in a new issue