mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
Qt: Implement Cheats Manager
This commit is contained in:
parent
396204248d
commit
c09075209f
14 changed files with 813 additions and 13 deletions
|
@ -15,7 +15,7 @@ class CheatWarningWidget : public QWidget
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit CheatWarningWidget(const std::string& game_id);
|
||||
explicit CheatWarningWidget(const std::string& game_id, bool restart_required);
|
||||
|
||||
signals:
|
||||
void OpenCheatEnableSettings();
|
||||
|
@ -29,4 +29,5 @@ private:
|
|||
QLabel* m_text;
|
||||
QPushButton* m_config_button;
|
||||
const std::string m_game_id;
|
||||
bool m_restart_required;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue