1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-02 09:26:30 -05:00

Merge branch 'threading'

This commit is contained in:
bunnei
2014-05-22 22:57:45 -04:00
44 changed files with 1559 additions and 193 deletions

View File

@@ -142,7 +142,7 @@ void GMainWindow::BootGame(const char* filename)
void GMainWindow::OnMenuLoadFile()
{
QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS homebrew (*.elf *.dat *.bin)"));
QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS homebrew (*.elf *.axf *.dat *.bin)"));
if (filename.size())
BootGame(filename.toLatin1().data());
}