Qt: Add bps to the list of patch formats

This commit is contained in:
Jeffrey Pfau 2015-02-21 11:35:48 -08:00
parent f646be0472
commit 407b0537d6
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ void Window::selectBIOS() {
}
void Window::selectPatch() {
QString filename = QFileDialog::getOpenFileName(this, tr("Select patch"), m_config->getQtOption("lastDirectory").toString(), tr("Patches (*.ips *.ups)"));
QString filename = QFileDialog::getOpenFileName(this, tr("Select patch"), m_config->getQtOption("lastDirectory").toString(), tr("Patches (*.ips *.ups *.bps)"));
if (!filename.isEmpty()) {
m_config->setQtOption("lastDirectory", QFileInfo(filename).dir().path());
m_controller->loadPatch(filename);