remove the hardcoded F11 debug key before I forget about it again

This commit is contained in:
Arisotura 2020-12-24 01:46:13 +01:00
parent 0f353e0d5f
commit b00cd8bdee
1 changed files with 1 additions and 1 deletions

View File

@ -1325,7 +1325,7 @@ void MainWindow::keyPressEvent(QKeyEvent* event)
if (event->isAutoRepeat()) return;
// TODO!! REMOVE ME IN RELEASE BUILDS!!
if (event->key() == Qt::Key_F11) NDS::debug(0);
//if (event->key() == Qt::Key_F11) NDS::debug(0);
Input::KeyPress(event);
}