diff --git a/src/nostalgia/core/gba/gfx.cpp b/src/nostalgia/core/gba/gfx.cpp index c0a6c377..7d3ca840 100644 --- a/src/nostalgia/core/gba/gfx.cpp +++ b/src/nostalgia/core/gba/gfx.cpp @@ -39,7 +39,7 @@ struct GbaTileMapTarget { template constexpr ox::Error modelRead(T *io, GbaPaletteTarget *t) noexcept { - io->template setTypeInfo(); + io->template setTypeInfo(); const auto colorHandler = [t](std::size_t i, Color16 *c) { t->palette[i] = *c; return OxError(0); @@ -49,7 +49,7 @@ constexpr ox::Error modelRead(T *io, GbaPaletteTarget *t) noexcept { template constexpr ox::Error modelRead(T *io, GbaTileMapTarget *t) noexcept { - io->template setTypeInfo(); + io->template setTypeInfo(); uint8_t bpp; oxReturnError(io->field("bpp", &bpp)); constexpr auto Bpp8 = 1 << 7;