mirror of https://github.com/PCSX2/pcsx2.git
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
This commit is contained in:
parent
a9640366ab
commit
5d200881a4
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue