diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-04-05 14:33:36 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-04-05 14:33:36 -0700 |
commit | fc09211df61864f89c9297c3fb334a3779b30fd2 (patch) | |
tree | c6bebae99bdb02d75a3c17f5661b44cd28412b20 /src | |
parent | c3f11717a5f56c71897f836a829bbec1a00b44b6 (diff) |
clearer glut mainloop message
Diffstat (limited to 'src')
-rw-r--r-- | src/library_glut.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_glut.js b/src/library_glut.js index 234666ca..11e448b2 100644 --- a/src/library_glut.js +++ b/src/library_glut.js @@ -447,7 +447,7 @@ var LibraryGLUT = { _glutReshapeWindow(Module['canvas'].width, Module['canvas'].height); _glutPostRedisplay(); - throw 'GLUT mainloop should never return'; + throw 'GLUT mainloop called, simulating infinite loop by throwing so we get right into the JS event loop'; }, }; |