]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/glwidget.cpp
Fixes for fullscreen mode, initial stab at multiple controller configs
[virtualjaguar] / src / gui / glwidget.cpp
index 2f959186914834bd0bf5cbb54ac03cfb97943263..ead7268ccd45f9615daedb2324270b72c68a5e7c 100644 (file)
@@ -144,20 +144,18 @@ void GLWidget::CreateTextures(void)
 }
 
 
-//void GLWidget::HideMouseIfTimedOut(void)
 void GLWidget::HandleMouseHiding(void)
 {
        // Mouse watchdog timer handling. Basically, if the timeout value is
-       // greater than zero, decrement it. Otherwise, check for zero, if so,
-       // then hide the mouse and set the hideMouseTimeout value to -1 to
-       // signal that the mouse has been hidden.
+       // greater than zero, decrement it. Otherwise, check for zero, if so, then
+       // hide the mouse and set the hideMouseTimeout value to -1 to signal that
+       // the mouse has been hidden.
        if (hideMouseTimeout > 0)
                hideMouseTimeout--;
        else if (hideMouseTimeout == 0)
        {
                hideMouseTimeout--;
                qApp->setOverrideCursor(Qt::BlankCursor);
-//printf("timer: hideMouseTimeout = %i, mouse hidden\n", hideMouseTimeout);
        }
 }