From 56fe0601ae20c82455759f5f5ac5849545abdde2 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Sun, 12 Jun 2022 03:02:04 +0200 Subject: [PATCH] early-access version 2774 --- README.md | 2 +- src/core/debugger/gdbstub_arch.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f3834d3a..8fbcc917d 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2773. +This is the source code for early-access 2774. ## Legal Notice diff --git a/src/core/debugger/gdbstub_arch.h b/src/core/debugger/gdbstub_arch.h index 4d039a9f7..2540d6456 100755 --- a/src/core/debugger/gdbstub_arch.h +++ b/src/core/debugger/gdbstub_arch.h @@ -15,6 +15,7 @@ namespace Core { class GDBStubArch { public: + virtual ~GDBStubArch() = default; virtual std::string GetTargetXML() const = 0; virtual std::string RegRead(const Kernel::KThread* thread, size_t id) const = 0; virtual void RegWrite(Kernel::KThread* thread, size_t id, std::string_view value) const = 0;