mirror of https://github.com/PCSX2/pcsx2.git
Small console message change.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4563 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
158a0c8c9c
commit
1bfd8cfd0c
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue