This commit is contained in:
wheremyfoodat 2023-12-14 00:45:31 +02:00
commit a9a31c3306
77 changed files with 2236 additions and 13 deletions

View file

@ -23,7 +23,7 @@ MainWindow::MainWindow(QApplication* app, QWidget* parent) : QMainWindow(parent)
auto aboutMenu = menuBar->addMenu(tr("About"));
// Create and bind actions for them
auto pandaAction = fileMenu->addAction(tr("panda..."));
auto pandaAction = fileMenu->addAction(tr("Load game"));
connect(pandaAction, &QAction::triggered, this, &MainWindow::selectROM);
auto pauseAction = emulationMenu->addAction(tr("Pause"));
@ -252,4 +252,4 @@ void MainWindow::keyReleaseEvent(QKeyEvent* event) {
case Qt::Key_Return: releaseKey(HID::Keys::Start); break;
case Qt::Key_Backspace: releaseKey(HID::Keys::Select); break;
}
}
}