diff --git a/sdlpp.hpp b/sdlpp.hpp index aa174cb..4a5a9f2 100644 --- a/sdlpp.hpp +++ b/sdlpp.hpp @@ -752,13 +752,9 @@ protected: auto width = renderer->getWidth(); auto height = renderer->getHeight(); if(width > height) { - std::cout << "WIDTH IS LARGER!" << std::endl; - std::cout << "og_x: " << og_x << std::endl; auto multiplier = static_cast(width)/static_cast(height); - std::cout << "MULTIPLIER: " << multiplier << std::endl; x_ = og_x * multiplier; w_ = og_w * multiplier; - std::cout << "X_: " << x_ << std::endl; } else { x_ = og_x; w_ = og_w;