mirror of https://github.com/PCSX2/pcsx2.git
Fix a mistake. Thanks for spotting it, dhaft.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2176 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
b7a5c067ba
commit
8a9582f73b
|
@ -563,7 +563,7 @@ protected:
|
||||||
int testh = GetDisplayRect().height() * multiplier;
|
int testh = GetDisplayRect().height() * multiplier;
|
||||||
//on startup testh and testw are 1 for a while (invalid)
|
//on startup testh and testw are 1 for a while (invalid)
|
||||||
if ((testh > m_height) && testh != 1) {
|
if ((testh > m_height) && testh != 1) {
|
||||||
m_height=testh*multiplier;
|
m_height=testh;
|
||||||
//printf("changed height > %d\n", m_height );
|
//printf("changed height > %d\n", m_height );
|
||||||
}
|
}
|
||||||
else if (testh == 1)return;
|
else if (testh == 1)return;
|
||||||
|
|
Loading…
Reference in New Issue