diff options
| author | 2017-08-22 08:09:09 -0600 | |
|---|---|---|
| committer | 2017-08-22 08:09:09 -0600 | |
| commit | a8675f42875d7ad41ef64b89ec478834042355dd (patch) | |
| tree | 8e2c67c072ad8d874d1b5685a8d084719acb90af /src/core/hw/gpu.h | |
| parent | Merge pull request #2894 from wwylele/motion-emu-fix (diff) | |
| parent | GPU/Warnings: Explicitly cast the screen refresh ticks to u64. (diff) | |
| download | yuzu-a8675f42875d7ad41ef64b89ec478834042355dd.tar.gz yuzu-a8675f42875d7ad41ef64b89ec478834042355dd.tar.xz yuzu-a8675f42875d7ad41ef64b89ec478834042355dd.zip | |
Merge pull request #2888 from Subv/warnings
Fixed some warnings in the core project.
Diffstat (limited to 'src/core/hw/gpu.h')
| -rw-r--r-- | src/core/hw/gpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h index 21b127fee..e3d0a0e08 100644 --- a/src/core/hw/gpu.h +++ b/src/core/hw/gpu.h | |||
| @@ -74,9 +74,9 @@ struct Regs { | |||
| 74 | case PixelFormat::RGB5A1: | 74 | case PixelFormat::RGB5A1: |
| 75 | case PixelFormat::RGBA4: | 75 | case PixelFormat::RGBA4: |
| 76 | return 2; | 76 | return 2; |
| 77 | default: | ||
| 78 | UNIMPLEMENTED(); | ||
| 79 | } | 77 | } |
| 78 | |||
| 79 | UNREACHABLE(); | ||
| 80 | } | 80 | } |
| 81 | 81 | ||
| 82 | INSERT_PADDING_WORDS(0x4); | 82 | INSERT_PADDING_WORDS(0x4); |