chore: update deps

This commit is contained in:
2025-05-19 10:31:38 +02:00
parent b25aeb38a5
commit 84d7702ba2
10 changed files with 33 additions and 9 deletions

View File

@ -1471,7 +1471,7 @@ namespace game
DB_ZONE_BASEMAP = 0x20,
DB_ZONE_TRANSIENT_POOL = 0x40,
DB_ZONE_TRANSIENT_MASK = 0x40,
DB_ZONE_CUSTOM = 0x80,
DB_ZONE_CUSTOM = 0x1000,
};
enum FF_DIR
@ -1486,6 +1486,15 @@ namespace game
HANDLE handle;
};
enum DB_CompressorType
{
DB_COMPRESSOR_INVALID = 0x0,
DB_COMPRESSOR_ZLIB = 0x1,
DB_COMPRESSOR_UNK2 = 0x2,
DB_COMPRESSOR_PASSTHROUGH = 0x3,
DB_COMPRESSOR_LZX = 0x4,
};
namespace mp
{
enum

View File

@ -269,6 +269,7 @@ namespace game
WEAK symbol<XAssetEntry> g_assetEntryPool{0x142CC2400, 0x14379F100};
WEAK symbol<int> g_poolSize{0x140804140, 0x1409B4B90};
WEAK symbol<const char*> g_assetNames{0x140803C90, 0x1409B3180};
WEAK symbol<int> g_compressor{0x141598580, 0x141E0B080};
WEAK symbol<DWORD> threadIds{0x149632EC0, 0x147DCEA30};