diff options
| author | 2019-04-28 22:24:58 -0400 | |
|---|---|---|
| committer | 2019-04-28 22:24:58 -0400 | |
| commit | c52233ec8b26d5dc8cdca746fc181191c99fb33b (patch) | |
| tree | 9d56a04c21f541570426042e74c7befe6b279317 /src/video_core/engines | |
| parent | Merge pull request #2423 from FernandoS27/half-correct (diff) | |
| parent | video_core: Silent -Wswitch warnings (diff) | |
| download | yuzu-c52233ec8b26d5dc8cdca746fc181191c99fb33b.tar.gz yuzu-c52233ec8b26d5dc8cdca746fc181191c99fb33b.tar.xz yuzu-c52233ec8b26d5dc8cdca746fc181191c99fb33b.zip | |
Merge pull request #2322 from ReinUsesLisp/wswitch
video_core: Silent -Wswitch warnings
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index cc2424d38..85d309d9b 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h | |||
| @@ -243,9 +243,10 @@ public: | |||
| 243 | return "10_10_10_2"; | 243 | return "10_10_10_2"; |
| 244 | case Size::Size_11_11_10: | 244 | case Size::Size_11_11_10: |
| 245 | return "11_11_10"; | 245 | return "11_11_10"; |
| 246 | default: | ||
| 247 | UNREACHABLE(); | ||
| 248 | return {}; | ||
| 246 | } | 249 | } |
| 247 | UNREACHABLE(); | ||
| 248 | return {}; | ||
| 249 | } | 250 | } |
| 250 | 251 | ||
| 251 | std::string TypeString() const { | 252 | std::string TypeString() const { |