From: Ingo Ruhnke Date: Wed, 21 May 2008 20:21:32 +0000 (+0000) Subject: Another debug cout disabled X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=69fcf99ff4db01d788a7fa17906d260ebaf67b49;p=supertux.git Another debug cout disabled SVN-Revision: 5500 --- diff --git a/src/video/gl_renderer.cpp b/src/video/gl_renderer.cpp index 6a4d60903..e182988d1 100644 --- a/src/video/gl_renderer.cpp +++ b/src/video/gl_renderer.cpp @@ -637,9 +637,10 @@ Renderer::apply_config() // Clear so that we get a clean black border without junk glClear(GL_COLOR_BUFFER_BIT); - std::cout << (w-nw)/2 << " " - << (h-nh)/2 << " " - << nw << "x" << nh << std::endl; + if (0) + std::cout << (w-nw)/2 << " " + << (h-nh)/2 << " " + << nw << "x" << nh << std::endl; glViewport(std::max(0, (w-nw)/2), std::max(0, (h-nh)/2),