Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
nishinji committed Aug 6, 2024
1 parent 108bab1 commit 921928d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion vita3k/config/include/config/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ enum ScreenshotFormat {
code(int, "perfomance-overlay-detail", static_cast<int>(MINIMUM), performance_overlay_detail) \
code(int, "perfomance-overlay-position", static_cast<int>(TOP_LEFT), performance_overlay_position) \
code(int, "screenshot-format", static_cast<int>(JPEG), screenshot_format) \
code(bool, "disable-motion", false, disable_motion) \
code(int, "keyboard-button-select", 229, keyboard_button_select) \
code(int, "keyboard-button-start", 40, keyboard_button_start) \
code(int, "keyboard-button-up", 82, keyboard_button_up) \
Expand Down Expand Up @@ -143,7 +144,7 @@ enum ScreenshotFormat {
code(std::string, "user-id", std::string{}, user_id) \
code(bool, "user-auto-connect", false, auto_user_login) \
code(std::string, "user-lang", std::string{}, user_lang) \
code(bool, "display-info-message", false, display_info_message) \
code(bool, "display-info-message", false, display_info_message) \
code(bool, "show-welcome", true, show_welcome) \
code(bool, "check-for-updates", true, check_for_updates) \
code(bool, "asia-font-support", false, asia_font_support) \
Expand Down
1 change: 0 additions & 1 deletion vita3k/config/include/config/state.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ struct Config : YamlLoader {
bool fullscreen = false;
bool console = false;
bool load_app_list = false;
bool disable_motion = false;

fs::path get_pref_path() const {
return fs_utils::utf8_to_path(pref_path);
Expand Down

0 comments on commit 921928d

Please sign in to comment.