Skip to content

Commit 99cac24

Browse files
committed
Fix dimmer capture card.
1 parent 25ab11a commit 99cac24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SerialPrograms/Source/NintendoSwitch/Inference/NintendoSwitch_SelectedSettingDetector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ void SelectedSettingWatcher::make_overlays(VideoOverlaySet& items) const{
3838
bool is_white_theme(const ImageViewRGB32& screen){
3939
ImageFloatBox window_top(0.60, 0.02, 0.35, 0.05);
4040
ImageStats stats_window_top = image_stats(extract_box_reference(screen, window_top));
41-
bool white_theme = stats_window_top.average.sum() > 600;
41+
bool white_theme = stats_window_top.average.sum() > 500;
4242
return white_theme;
4343
}
4444

0 commit comments

Comments
 (0)