summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-06-23 09:43:00 -0700
committerGitHub <noreply@github.com>2021-06-23 09:43:00 -0700
commitd8d9bb0dfb4af17233b17bfa590198a63de5335e (patch)
treeb5ca9dbbb87054a3f0a39d85fa16199d13dd4d4c
parent17fff10e06e7935522a5a69705b9a750761aab79 (diff)
parentbe6844c1edb31a77898adc191ddb42f7b138e9fb (diff)
Merge pull request #6518 from lioncash/func
maxwell3d: Add missing return in default SizeInBytes() case
-rw-r--r--src/video_core/engines/maxwell_3d.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index ffed42a29..335383955 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -242,6 +242,7 @@ public:
return 4;
default:
UNREACHABLE();
+ return 1;
}
}