From 2cab0b6b59e0715b0f94b2b73a7df01a05e805ac Mon Sep 17 00:00:00 2001 From: Henrique Gemignani Passos Lima Date: Thu, 1 Dec 2022 18:25:05 +0200 Subject: [PATCH] Fix CTexture size --- include/Kyoto/Graphics/CTexture.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/Kyoto/Graphics/CTexture.hpp b/include/Kyoto/Graphics/CTexture.hpp index 5ec9ddf8..ff7e040b 100644 --- a/include/Kyoto/Graphics/CTexture.hpp +++ b/include/Kyoto/Graphics/CTexture.hpp @@ -63,8 +63,8 @@ private: uchar mNumMips; uchar mBitsPerPixel; uchar mFlag1 : 1; - uchar pad[0x57]; + uchar pad[0x5A]; }; -// CHECK_SIZEOF(CTexture, ) +CHECK_SIZEOF(CTexture, 0x68) #endif // _CTEXTURE