guild mark uploading fixed

This commit is contained in:
d1str4ught
2025-09-22 02:44:22 +02:00
parent 81c61692f1
commit bdcb68619a
4 changed files with 12 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
#ifndef __INC_METIN_II_MARKIMAGE_H__
#define __INC_METIN_II_MARKIMAGE_H__
typedef unsigned long Pixel;
typedef uint32_t Pixel;
struct SGuildMark
{
@@ -100,7 +100,7 @@ class CGuildMarkImage
void BuildAllBlocks();
SGuildMarkBlock m_aakBlock[BLOCK_ROW_COUNT][BLOCK_COL_COUNT];
Pixel m_apxImage[WIDTH * HEIGHT * sizeof(Pixel)];
Pixel m_apxImage[WIDTH * HEIGHT];
};
#endif