1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-03 06:24:30 +00:00

convert remaining RGB5a1 to RGBA16 (#879)

This commit is contained in:
louist103 2021-08-01 13:15:21 -04:00 committed by GitHub
parent a209195183
commit d2bad8fb6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 15 deletions

View file

@ -29,6 +29,6 @@ typedef union {
u16 a : 1;
};
u16 rgba;
} Color_RGB5A1;
} Color_RGBA16;
#endif