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:
ramapcsx2 2009-11-10 14:11:43 +00:00
parent b7a5c067ba
commit 8a9582f73b
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ protected:
int testh = GetDisplayRect().height() * multiplier;
//on startup testh and testw are 1 for a while (invalid)
if ((testh > m_height) && testh != 1) {
m_height=testh*multiplier;
m_height=testh;
//printf("changed height > %d\n", m_height );
}
else if (testh == 1)return;