From 1bfd8cfd0ca4c753e82acdb42282ec76e4fa9287 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Sat, 9 Apr 2011 14:53:33 +0000 Subject: [PATCH] Small console message change. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4563 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/gui/GlobalCommands.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pcsx2/gui/GlobalCommands.cpp b/pcsx2/gui/GlobalCommands.cpp index b4926d38ac..2472a62ed6 100644 --- a/pcsx2/gui/GlobalCommands.cpp +++ b/pcsx2/gui/GlobalCommands.cpp @@ -244,8 +244,12 @@ namespace Implementations if( zoom < 0 ) return; g_Conf->GSWindow.Zoom = zoom; - Console.WriteLn(L"(GSwindow) Zoom: %f", zoom); - + + if ( zoom == 0 ) + Console.WriteLn(L"(GSwindow) Zoom: 0 (auto, no black bars)"); + else + Console.WriteLn(L"(GSwindow) Zoom: %f", zoom); + UpdateImagePosition(); }