├── .gitignore ├── LICENSE ├── Title_Switch.pro ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── res ├── blazblue.webp ├── fallout_shelter.webp ├── fortnite.webp ├── hulu.webp ├── icon.webp ├── kitten_squad.webp ├── octopath_traveler.webp ├── pac-man.webp ├── pinball_fx3.webp ├── pokemon_quest.webp ├── stern_pinball_arcade.webp ├── the_pinball_arcade.webp ├── wait.webp ├── wait0.webp ├── wait1.webp └── wait2.webp ├── resources.qrc └── title_switch.icns /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/LICENSE -------------------------------------------------------------------------------- /Title_Switch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/Title_Switch.pro -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /res/blazblue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/blazblue.webp -------------------------------------------------------------------------------- /res/fallout_shelter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/fallout_shelter.webp -------------------------------------------------------------------------------- /res/fortnite.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/fortnite.webp -------------------------------------------------------------------------------- /res/hulu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/hulu.webp -------------------------------------------------------------------------------- /res/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/icon.webp -------------------------------------------------------------------------------- /res/kitten_squad.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/kitten_squad.webp -------------------------------------------------------------------------------- /res/octopath_traveler.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/octopath_traveler.webp -------------------------------------------------------------------------------- /res/pac-man.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/pac-man.webp -------------------------------------------------------------------------------- /res/pinball_fx3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/pinball_fx3.webp -------------------------------------------------------------------------------- /res/pokemon_quest.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/pokemon_quest.webp -------------------------------------------------------------------------------- /res/stern_pinball_arcade.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/stern_pinball_arcade.webp -------------------------------------------------------------------------------- /res/the_pinball_arcade.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/the_pinball_arcade.webp -------------------------------------------------------------------------------- /res/wait.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/wait.webp -------------------------------------------------------------------------------- /res/wait0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/wait0.webp -------------------------------------------------------------------------------- /res/wait1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/wait1.webp -------------------------------------------------------------------------------- /res/wait2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/res/wait2.webp -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/resources.qrc -------------------------------------------------------------------------------- /title_switch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nastys/titleswitch/HEAD/title_switch.icns --------------------------------------------------------------------------------