]> Shamusworld >> Repos - apple2/commitdiff
Fixed extra parenthesis in gui.cpp. :-P
authorShamus Hammons <jlhamm@acm.org>
Wed, 26 Mar 2014 22:44:47 +0000 (17:44 -0500)
committerShamus Hammons <jlhamm@acm.org>
Wed, 26 Mar 2014 22:44:47 +0000 (17:44 -0500)
src/gui/gui.cpp

index 29358c8be844b65e57e2415251110683c650afa3..91ce920ef799125c8d4f8a9fdb617457fd81f2f3 100644 (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))