1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 10:01:21 +00:00

Removed "SPRAY" from _MOUSESHOW

"SPRAY" gives the same result as "CROSSHAIR" and so is unnecessary
This commit is contained in:
Zachary Spriggs 2021-02-24 15:42:05 -05:00 committed by GitHub
parent a3141fc425
commit 66ea2b794d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18096,7 +18096,6 @@ void sub_put2(int32 i,int64 offset,void *element,int32 passed){
if (qbs_equal(str,qbs_new_txt ("TOPRIGHT_BOTTOMLEFT"))) {mouse_cursor_style=GLUT_CURSOR_TOP_RIGHT_CORNER; goto cursor_valid;}
if (qbs_equal(str,qbs_new_txt ("WAIT"))) {mouse_cursor_style=GLUT_CURSOR_WAIT; goto cursor_valid;}
if (qbs_equal(str,qbs_new_txt ("HELP"))) {mouse_cursor_style=GLUT_CURSOR_HELP; goto cursor_valid;}
if (qbs_equal(str,qbs_new_txt ("SPRAY"))) {mouse_cursor_style=GLUT_CURSOR_SPRAY; goto cursor_valid;}
error(5); return;
}
cursor_valid: