Set Citra as standalone emulator

This commit is contained in:
Mathieu Comandon 2020-04-07 22:14:39 -07:00
parent d38ce1b36b
commit e289d9d7c8
2 changed files with 2 additions and 1 deletions

View file

@ -142,7 +142,7 @@ class GameStore(GObject.Object):
self.modelsort = Gtk.TreeModelSort.sort_new_with_model(self.modelfilter)
except AttributeError:
# Apparently some API breaking changes on GTK minor versions.
self.modelsort = Gtk.TreeModelSort.new_with_model(self.modelfilter)
self.modelsort = Gtk.TreeModelSort.new_with_model(self.modelfilter) # pylint: disable=no-member
self.modelsort.connect("sort-column-changed", self.on_sort_column_changed)
self.modelsort.set_sort_func(sort_col, sort_func, sort_col)
self.sort_view(sort_key, sort_ascending)

View file

@ -7,6 +7,7 @@ class citra(Runner):
platforms = ["Nintendo 3DS"]
description = "Nintendo 3DS emulator"
runner_executable = "citra/citra-qt"
runnable_alone = True
game_options = [
{
"option": "main_file",