summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-03-08 18:03:58 +0100
committerGitHub <noreply@github.com>2019-03-08 18:03:58 +0100
commit78c803b4f3462161992bedbeed6b44efbd681e59 (patch)
treeb19813e42ef4c344a784dc4af3d6c59b8f20b741 /src/video_core/gpu.h
parentMerge pull request #2191 from ReinUsesLisp/maxwell-to-vk (diff)
parentvideo_core/gpu: Make GPU's destructor virtual (diff)
downloadyuzu-78c803b4f3462161992bedbeed6b44efbd681e59.tar
yuzu-78c803b4f3462161992bedbeed6b44efbd681e59.tar.gz
yuzu-78c803b4f3462161992bedbeed6b44efbd681e59.tar.bz2
yuzu-78c803b4f3462161992bedbeed6b44efbd681e59.tar.lz
yuzu-78c803b4f3462161992bedbeed6b44efbd681e59.tar.xz
yuzu-78c803b4f3462161992bedbeed6b44efbd681e59.tar.zst
yuzu-78c803b4f3462161992bedbeed6b44efbd681e59.zip
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r--src/video_core/gpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 14a421cc1..56a203275 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -123,7 +123,7 @@ class GPU {
public:
explicit GPU(Core::System& system, VideoCore::RendererBase& renderer);
- ~GPU();
+ virtual ~GPU();
struct MethodCall {
u32 method{};