diff options
| author | 2021-06-23 09:43:00 -0700 | |
|---|---|---|
| committer | 2021-06-23 09:43:00 -0700 | |
| commit | d8d9bb0dfb4af17233b17bfa590198a63de5335e (patch) | |
| tree | b5ca9dbbb87054a3f0a39d85fa16199d13dd4d4c | |
| parent | Merge pull request #6465 from FernandoS27/sex-on-the-beach (diff) | |
| parent | maxwell3d: Add missing return in default SizeInBytes() case (diff) | |
| download | yuzu-d8d9bb0dfb4af17233b17bfa590198a63de5335e.tar.gz yuzu-d8d9bb0dfb4af17233b17bfa590198a63de5335e.tar.xz yuzu-d8d9bb0dfb4af17233b17bfa590198a63de5335e.zip | |
Merge pull request #6518 from lioncash/func
maxwell3d: Add missing return in default SizeInBytes() case
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 1 |
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: | |||
| 242 | return 4; | 242 | return 4; |
| 243 | default: | 243 | default: |
| 244 | UNREACHABLE(); | 244 | UNREACHABLE(); |
| 245 | return 1; | ||
| 245 | } | 246 | } |
| 246 | } | 247 | } |
| 247 | 248 | ||