Create constructor for SimpleTIM

This commit is contained in:
Jaby
2024-09-28 13:13:00 +02:00
committed by Jaby
parent 6672ab7980
commit 7d0568c52e
8 changed files with 12 additions and 14 deletions

View File

@@ -10,9 +10,9 @@ namespace Assets {
GPU::SizeI16 size;
};
static constexpr auto PacoTIM = SimpleTIM(896, 0, 960, 510);
static constexpr auto PacoTIM = SimpleTIM::create(896, 0, 960, 510);
static constexpr auto DoenerFishInfo = ImageInfo{
.tim = SimpleTIM(896 + 30, 0, 960 + 16, 510),
.tim = SimpleTIM::create(896 + 30, 0, 960 + 16, 510),
.size = GPU::SizeI16::create(128, 64)
};