summaryrefslogtreecommitdiffstats
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-04 21:59:33 +0100
committerGitHub <noreply@github.com>2017-02-04 21:59:33 +0100
commit18c981b99606b40897d8bc2da218e34509873246 (patch)
tree7b95528950ba5644b07c3c9340ebdadb0c41db3d /src/video_core/pica.h
parentchanged the WIN32 macro in microprofileui (#2528) (diff)
parentPica/Texture: Move part of ETC1 decoding to new file and cleanups (diff)
downloadyuzu-18c981b99606b40897d8bc2da218e34509873246.tar
yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.gz
yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.bz2
yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.lz
yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.xz
yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.zst
yuzu-18c981b99606b40897d8bc2da218e34509873246.zip
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r--src/video_core/pica.h5
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;
}
}