Remove debug prints that probably shouldn't have been merged

Also add a comment to the one place `eprintln!` is used to explain why
it's appropriate.
This commit is contained in:
Ian Douglas Scott 2025-07-02 18:46:01 -07:00 committed by Victoria Brekenfeld
parent 2b4890c550
commit e5fbf21fee
4 changed files with 3 additions and 3 deletions

View file

@ -113,7 +113,7 @@ impl WinitState {
.get::<RefCell<OutputConfig>>()
.unwrap()
.borrow_mut();
if dbg!(config.mode.0) != dbg!((size.w, size.h)) {
if config.mode.0 != (size.w, size.h) {
if !test_only {
config.mode = ((size.w, size.h), None);
}