diff options
| author | 2019-04-03 04:33:36 -0300 | |
|---|---|---|
| committer | 2019-04-18 15:54:39 -0300 | |
| commit | fbe8d1ceaa94c70e13a575f774967e559d0dee72 (patch) | |
| tree | 50f2bca6610784444cc3b75fd2c88eac553e1075 /src/video_core/engines | |
| parent | Merge pull request #2378 from lioncash/ro (diff) | |
| download | yuzu-fbe8d1ceaa94c70e13a575f774967e559d0dee72.tar.gz yuzu-fbe8d1ceaa94c70e13a575f774967e559d0dee72.tar.xz yuzu-fbe8d1ceaa94c70e13a575f774967e559d0dee72.zip | |
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 321af3297..a47d5607c 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 { |