From 40b06e08cfd979141733f7f42c7b603ec9f43432 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 25 Aug 2017 17:15:16 +0200 Subject: [PATCH] Revert "Platform: use saner APIs." Didn't realize that this would put two newlines there, instead of just one. So it's not a saner API. This reverts commit 8e2ecc922b385572d3b4641cda4217141044b440. --- src/Magnum/Platform/magnum-info.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Platform/magnum-info.cpp b/src/Magnum/Platform/magnum-info.cpp index fa459d5cb..ea9b493b9 100644 --- a/src/Magnum/Platform/magnum-info.cpp +++ b/src/Magnum/Platform/magnum-info.cpp @@ -161,11 +161,11 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat args.parse(arguments.argc, arguments.argv); #endif - Debug() << Debug::newline; + Debug() << ""; Debug() << " +---------------------------------------------------------+"; Debug() << " | Information about Magnum engine and OpenGL capabilities |"; Debug() << " +---------------------------------------------------------+"; - Debug() << Debug::newline; + Debug() << ""; #ifdef MAGNUM_WINDOWLESSEGLAPPLICATION_MAIN Debug() << "Used application: Platform::WindowlessEglApplication";