Qt: Implement Cheats Manager

This commit is contained in:
spycrab
2018-03-26 04:17:47 +02:00
parent 396204248d
commit c09075209f
14 changed files with 813 additions and 13 deletions

View File

@ -28,7 +28,7 @@ class GeckoCodeWidget : public QWidget
{
Q_OBJECT
public:
explicit GeckoCodeWidget(const UICommon::GameFile& game);
explicit GeckoCodeWidget(const UICommon::GameFile& game, bool restart_required = true);
signals:
void OpenGeneralSettings();
@ -62,4 +62,5 @@ private:
QPushButton* m_remove_code;
QPushButton* m_download_codes;
std::vector<Gecko::GeckoCode> m_gecko_codes;
bool m_restart_required;
};