Fixed extra parenthesis in gui.cpp. :-P

This commit is contained in:
Shamus Hammons 2014-03-26 17:44:47 -05:00
parent 0574860ec5
commit e9d839da6b
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ void GUI::MouseMove(int32_t x, int32_t y, uint32_t buttons)
disk1EjectHovered = ((x >= (SIDEBAR_X_POS + 24 + 29))
&& (x < (SIDEBAR_X_POS + 24 + 29 + 8))
&& (y >= (63 + 31 + 2))
&& (y < (63 + 31 + 2 + 7))) ? true : false);
&& (y < (63 + 31 + 2 + 7)) ? true : false);
disk2EjectHovered = ((x >= (SIDEBAR_X_POS + 24 + 29))
&& (x < (SIDEBAR_X_POS + 24 + 29 + 8))