From 5d200881a4177d75181ae9c59c80963e638f41be Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Sat, 9 Apr 2011 01:40:23 +0000 Subject: [PATCH] Small console printout consistency change. All the GSWindow prints look like this :p git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4556 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/gui/GlobalCommands.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/gui/GlobalCommands.cpp b/pcsx2/gui/GlobalCommands.cpp index f2aea21d26..b4926d38ac 100644 --- a/pcsx2/gui/GlobalCommands.cpp +++ b/pcsx2/gui/GlobalCommands.cpp @@ -190,7 +190,7 @@ namespace Implementations { g_Conf->GSWindow.OffsetX = x; g_Conf->GSWindow.OffsetY = y; - Console.WriteLn(L"GSwindow: set offset: x=%f, y=%f", x,y); + Console.WriteLn(L"(GSwindow) Offset: x=%f, y=%f", x,y); UpdateImagePosition(); @@ -221,7 +221,7 @@ namespace Implementations if( zoom <= 0 ) return; g_Conf->GSWindow.StretchY = zoom; - Console.WriteLn(L"GSwindow: set vertical sterctch: %f", zoom); + Console.WriteLn(L"(GSwindow) Vertical stretch: %f", zoom); UpdateImagePosition(); } @@ -244,7 +244,7 @@ namespace Implementations if( zoom < 0 ) return; g_Conf->GSWindow.Zoom = zoom; - Console.WriteLn(L"GSwindow: set zoom: %f", zoom); + Console.WriteLn(L"(GSwindow) Zoom: %f", zoom); UpdateImagePosition(); }