summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_dma.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-14 04:59:10 +0200
committerGitHub <noreply@github.com>2021-04-14 04:59:10 +0200
commit8146c8c5e72e9ace00c91970b46baee5ef03bd72 (patch)
treebe673e0485d318908b1f799706f1aa94b5092668 /src/video_core/engines/maxwell_dma.h
parentMerge pull request #6190 from lioncash/constfn2 (diff)
parentengine_interface: Add missing virtual destructor (diff)
downloadyuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar
yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.gz
yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.bz2
yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.lz
yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.xz
yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.zst
yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.zip
Diffstat (limited to 'src/video_core/engines/maxwell_dma.h')
-rw-r--r--src/video_core/engines/maxwell_dma.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h
index 3c59eeb13..c77f02a22 100644
--- a/src/video_core/engines/maxwell_dma.h
+++ b/src/video_core/engines/maxwell_dma.h
@@ -188,7 +188,7 @@ public:
static_assert(sizeof(RemapConst) == 12);
explicit MaxwellDMA(Core::System& system_, MemoryManager& memory_manager_);
- ~MaxwellDMA();
+ ~MaxwellDMA() override;
/// Write the value to the register identified by method.
void CallMethod(u32 method, u32 method_argument, bool is_last_call) override;