From 27274c72426add7a5530f7754318e325c40dbb09 Mon Sep 17 00:00:00 2001 From: zvon Date: Sat, 22 Aug 2020 14:31:41 +0200 Subject: [PATCH] Remove useless couts --- sdlpp.hpp | 4 ---- 1 file changed, 4 deletions(-) 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;