diff options
| author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-01-06 01:19:06 -0200 |
|---|---|---|
| committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-04 12:33:25 -0800 |
| commit | 09a750e8662e5d4d608177fdfb69b398c3202cd6 (patch) | |
| tree | 6d5b6af7cd77de75406516eb41eda42f2c963f4a /src/video_core/pica.h | |
| parent | a1c9ac7845395c250a78fc8df93a9ffed29f3d5b (diff) | |
Pica/Texture: Simplify/cleanup texture tile addressing
Diffstat (limited to 'src/video_core/pica.h')
| -rw-r--r-- | src/video_core/pica.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index b2db609ec..4ab4f1f40 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -275,8 +275,11 @@ struct Regs { case TextureFormat::I8: case TextureFormat::A8: case TextureFormat::IA4: - default: // placeholder for yet unknown formats return 2; + + default: // placeholder for yet unknown formats + UNIMPLEMENTED(); + return 0; } } |
