Pica/Texture: Simplify/cleanup texture tile addressing

This commit is contained in:
Yuri Kunde Schlesner 2017-01-06 01:19:06 -02:00
parent a1c9ac7845
commit 09a750e866
5 changed files with 117 additions and 44 deletions

View file

@ -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;
}
}