Update QT frontend window title to 'Panda3DS'.

This commit is contained in:
Riley Hawksworth 2024-04-13 19:57:19 +01:00 committed by GitHub
parent 9884663347
commit 30dc4a6cac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,7 @@
#include "input_mappings.hpp"
MainWindow::MainWindow(QApplication* app, QWidget* parent) : QMainWindow(parent), keyboardMappings(InputMappings::defaultKeyboardMappings()), screen(this) {
setWindowTitle("Alber");
setWindowTitle("Panda3DS");
// Enable drop events for loading ROMs
setAcceptDrops(true);
resize(800, 240 * 4);
@ -510,4 +510,4 @@ void MainWindow::pollControllers() {
}
}
}
}
}