Replace magic number 352 with VIEWPORT_HEIGHT (#1232)

This commit is contained in:
Manuel K 2019-06-02 18:51:33 +02:00 committed by Anders Jenbo
commit 896933f55e
13 changed files with 30 additions and 28 deletions

View file

@ -1363,7 +1363,7 @@ void CheckInvItem()
void CheckInvScrn()
{
if (MouseX > 190 && MouseX < 437
&& MouseY > 352 && MouseY < 385) {
&& MouseY > VIEWPORT_HEIGHT && MouseY < 385) {
CheckInvItem();
}
}