diff --git a/README.md b/README.md index 062a731..6f1eddc 100755 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ _Note: Currently only tested using a PS5 controller._ - __O key__: Open/Close connection to the 3DS/DS. - __F key__: Toggles Fullscreen mode on/off. Only guaranteed to work on the primary monitor. When using certain setups, it also works for multiple monitors. - __S key__: Swaps between Split mode and Joint mode. In Split mode, each screen has its own window. In Joint mode, they are combined into a single one. -- __C key__: Cycles to the next Crop mode for the focused window. For 3DS, the currently supported cropping modes are: 3DS, 16:10 DS, scaled DS, native DS, scaled GBA, native GBA, scaled GB, native GB, scaled SNES, native SNES and native NES. For DS, the currently supported cropping modes are: DS, Top GBA and Bottom GBA. +- __C key__: Cycles to the next Crop mode for the focused window. For 3DS, the currently supported cropping modes are: 3DS, 16:10 DS, scaled DS, native DS, scaled GBA, native GBA, scaled GB, native GB, scaled SNES, native SNES and native NES. For DS, the currently supported cropping modes are: DS, Top GBA and Bottom GBA. There are also game-specific cropping modes which can be enabled via the Video Settings. - __-/0 key__: Decrements/Increments the scaling by 0.5x for the non-Fullscreen focused window. 1.0x is the minimum. 45.0x is the maximum. - __Y/U key__: In Joint Fullscreen mode, increases the size of the top/bottom screen. Corresponds to the _Screens ratio_ Video Setting. - __Z/X key__: Decreases/Increases the Menu Scaling multiplier by 0.1. 0.3 is the minimum. 10.0 is the maximum. diff --git a/source/Menus/VideoMenu.cpp b/source/Menus/VideoMenu.cpp index 820ed3f..b09747f 100755 --- a/source/Menus/VideoMenu.cpp +++ b/source/Menus/VideoMenu.cpp @@ -166,7 +166,6 @@ static const VideoMenuOptionInfo allow_game_crops_option = { static const VideoMenuOptionInfo* pollable_options[] = { &crop_option, -//&allow_game_crops_option, &window_scaling_option, &fullscreen_scaling_option, &menu_scaling_option, @@ -183,6 +182,7 @@ static const VideoMenuOptionInfo* pollable_options[] = { &top_par_option, &bot_par_option, &one_par_option, +&allow_game_crops_option, &resolution_settings_option, &padding_option, &bfi_settings_option, diff --git a/source/frontend.cpp b/source/frontend.cpp index 28305d9..61f3b64 100755 --- a/source/frontend.cpp +++ b/source/frontend.cpp @@ -408,7 +408,7 @@ void reset_screen_info(ScreenInfo &info) { info.crop_kind_ds = 0; info.crop_kind_games = 0; info.crop_kind_ds_games = 0; - info.allow_games_crops = true; + info.allow_games_crops = false; info.scaling = 1.0; info.is_fullscreen = false; info.bottom_pos = UNDER_TOP;