multi-touch callback had a copy paste error in the draw loop (thanks sorav for reporting)

(cherry picked from commit a40f9e9c4e)

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1804 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
dcnieho 2017-06-14 20:51:09 +00:00
parent d860b2e225
commit 26a9d9ca03

View File

@ -58,7 +58,7 @@ void onDisplay(void) {
glVertexPointer(2, GL_FLOAT, 0, square); glVertexPointer(2, GL_FLOAT, 0, square);
for (d = 0; d < NUM_DEVICES; d++) { for (d = 0; d < NUM_DEVICES; d++) {
int c; int c;
for (c = 0; d < NUM_DEVICES; d++) { for (c = 0; c < NUM_CURSORS; c++) {
Cursor C = &cursors[d][c]; Cursor C = &cursors[d][c];
if (C->on) { if (C->on) {
glMatrixMode(GL_MODELVIEW); glMatrixMode(GL_MODELVIEW);