summaryrefslogtreecommitdiff
path: root/src/yuzu/debugger/controller.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-07-09 23:30:58 -0500
committerMonsterDruide1 <5958456@gmail.com>2021-09-18 23:22:57 +0200
commit5401cf6eb583092ed144d0f30fb6221a0ab25fed (patch)
treef4f44714d993387dffc4afbc8346b0cfb9b46b7e /src/yuzu/debugger/controller.h
parent33a1d790e8a5f67c73d0eef4a141f936345f104f (diff)
input_common/tas: new update method
Diffstat (limited to 'src/yuzu/debugger/controller.h')
-rw-r--r--src/yuzu/debugger/controller.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/yuzu/debugger/controller.h b/src/yuzu/debugger/controller.h
index 448d24b67..7742db58b 100644
--- a/src/yuzu/debugger/controller.h
+++ b/src/yuzu/debugger/controller.h
@@ -25,7 +25,6 @@ struct ControllerInput {
struct ControllerCallback {
std::function<void(ControllerInput)> input;
- std::function<void(bool)> update;
};
class ControllerDialog : public QWidget {
@@ -45,7 +44,6 @@ protected:
private:
void InputController(ControllerInput input);
- void UpdateController(bool update);
QAction* toggle_view_action = nullptr;
QFileSystemWatcher* watcher = nullptr;
PlayerControlPreview* widget;