guild mark uploading fixed

This commit is contained in:
d1str4ught
2025-09-22 02:44:38 +02:00
parent 1b54517f9d
commit 37b15a7a98

View File

@@ -3,7 +3,7 @@
#include "minilzo.h" #include "minilzo.h"
typedef unsigned long Pixel; typedef uint32_t Pixel;
struct SGuildMark struct SGuildMark
{ {
@@ -102,7 +102,7 @@ class CGuildMarkImage
void BuildAllBlocks(); void BuildAllBlocks();
SGuildMarkBlock m_aakBlock[BLOCK_ROW_COUNT][BLOCK_COL_COUNT]; SGuildMarkBlock m_aakBlock[BLOCK_ROW_COUNT][BLOCK_COL_COUNT];
Pixel m_apxImage[WIDTH * HEIGHT * sizeof(Pixel)]; Pixel m_apxImage[WIDTH * HEIGHT];
}; };
#endif #endif