- fix bug with stylus in vertical swapped screens layout;
This commit is contained in:
mtabachenko 2009-11-02 12:22:38 +00:00
parent 53e61f0ece
commit 2c8473e761
1 changed files with 1 additions and 1 deletions

View File

@ -538,7 +538,7 @@ void ToDSScreenRelativeCoords(s32& x, s32& y, bool bottomScreen)
y = 191;
// finally, make it relative to the correct screen
if(bottomScreen)
if((bottomScreen) && (video.swap == 0))
y -= 192;
}
else