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

Trim leading and tailing whitespace in base64 string, fixes exception in base64 lib

This commit is contained in:
2022-09-07 04:03:49 +10:00
parent ff162de80a
commit 62582723bc
2 changed files with 12 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ public:
uint32_t LidFromGid(uint32_t aGid);
private:
static bool DecodeMap(uint32_t* aOut, size_t aOutSize, const std::string& aStrIn);
static bool DecodeMap(uint32_t* aOut, size_t aOutSize, const std::string& aBase64Dat);
void ReadTileset(rapidxml::xml_node<>* aXNode);
void ReadLayer(rapidxml::xml_node<>* aXNode);
void ReadObjects(rapidxml::xml_node<>* aXNode);