Add Cheat Manager (#2964)

* add cheatmanager

* use modloader to load cheats for manager

* addressed nits
This commit is contained in:
Emmanuel Hansen
2022-01-03 08:39:43 +00:00
committed by GitHub
parent dc8a1d5cba
commit e98abf1820
12 changed files with 388 additions and 13 deletions

View File

@@ -469,6 +469,11 @@ namespace Ryujinx.Ui.Widgets
new DlcWindow(_virtualFileSystem, _titleIdText, _titleName).Show();
}
private void ManageCheats_Clicked(object sender, EventArgs args)
{
new CheatWindow(_virtualFileSystem, _titleId, _titleName).Show();
}
private void OpenTitleModDir_Clicked(object sender, EventArgs args)
{
string modsBasePath = _virtualFileSystem.ModLoader.GetModsBasePath();