VIDEO: Cleanup mixed array / type declaration

This commit is contained in:
Max Horn 2011-05-03 13:25:01 +02:00
parent 4dd4cf8bc0
commit 89f40bc02a

View file

@ -60,12 +60,14 @@ enum {
};
// { valid for metatype }, algorithm, num of deltas, vert res, horiz res
struct {
struct CompressionType {
int algorithm;
int blockWidth; // vres
int blockHeight; // hres
int blockType;
} static const compressionTypes[17] = {
};
static const CompressionType compressionTypes[17] = {
{ ALGO_NOP, 0, 0, 0 },
{ ALGO_RGB16V, 4, 4, BLOCK_4x4 },