summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-02-13 23:47:51 -0500
committerGravatar Lioncash2018-02-13 23:47:51 -0500
commit490d0e36a0dd19bc1395719e8239ce0180ad4bf8 (patch)
tree294ee46e60ac837f5ab0eb972fb0f214aa3e8960 /src
parentMerge pull request #187 from Subv/maxwell3d_query (diff)
downloadyuzu-490d0e36a0dd19bc1395719e8239ce0180ad4bf8.tar.gz
yuzu-490d0e36a0dd19bc1395719e8239ce0180ad4bf8.tar.xz
yuzu-490d0e36a0dd19bc1395719e8239ce0180ad4bf8.zip
maxwell_3d: Make constructor explicit
Diffstat (limited to 'src')
-rw-r--r--src/video_core/engines/maxwell_3d.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 5cd2ecd20..1eeef6857 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -14,7 +14,7 @@ namespace Engines {
14 14
15class Maxwell3D final { 15class Maxwell3D final {
16public: 16public:
17 Maxwell3D(MemoryManager& memory_manager); 17 explicit Maxwell3D(MemoryManager& memory_manager);
18 ~Maxwell3D() = default; 18 ~Maxwell3D() = default;
19 19
20 /// Write the value to the register identified by method. 20 /// Write the value to the register identified by method.