Skip to content

Commit

Permalink
Also print status of HQ input alignment flag + added clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
jonfryd committed Nov 24, 2024
1 parent 0bc1d60 commit d82dcce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ void Display::print_verbose_info() {
std::cout << "Fit to usable bounds: " << std::boolalpha << fit_window_to_usable_bounds_ << std::endl;
std::cout << "High-DPI allowed: " << std::boolalpha << high_dpi_allowed_ << std::endl;
std::cout << "Use 10 bpc: " << std::boolalpha << use_10_bpc_ << std::endl;
std::cout << "HQ input alignment: " << std::boolalpha << high_quality_input_alignment_ << std::endl;
std::cout << "Mouse whl sensitivity: " << wheel_sensitivity_ << std::endl;

SDL_version sdl_linked_version;
Expand Down Expand Up @@ -1515,7 +1516,7 @@ void Display::input() {
break;
case SDLK_i:
high_quality_input_alignment_ = !high_quality_input_alignment_;
std::cout << "Input alignment resizing filter set to '" << (high_quality_input_alignment_ ? "BICUBIC (high-quality)" : "BILINEAR (fast)") << "' (takes effect for the next converted frame)" << std::endl;
std::cout << "Input alignment resizing filter set to '" << (high_quality_input_alignment_ ? "BICUBIC (high-quality)" : "BILINEAR (fast)") << "' (takes effect for the next decoded frame)" << std::endl;
break;
case SDLK_t:
use_bilinear_texture_filtering_ = !use_bilinear_texture_filtering_;
Expand Down

0 comments on commit d82dcce

Please sign in to comment.