1
0
mirror of https://github.com/ScrelliCopter/tmx2gba.git synced 2025-02-21 03:29:25 +11:00

Revert "port to tmxlite"

This reverts commit 35abaf71
This commit is contained in:
2024-04-08 02:54:44 +10:00
parent f9928df187
commit ebe83ffb68
44 changed files with 3656 additions and 4586 deletions

View File

@@ -9,7 +9,7 @@ template <> constexpr std::string_view DatType<uint8_t>() { return "unsigned cha
template <> constexpr std::string_view DatType<uint16_t>() { return "unsigned short"; }
template <> constexpr std::string_view DatType<uint32_t>() { return "unsigned int"; }
void HeaderWriter::WriteSize(unsigned width, unsigned height)
void HeaderWriter::WriteSize(int width, int height)
{
stream << std::endl;
WriteDefine(mName + "Width", width);