This commit is contained in:
2025-10-02 18:53:47 -05:00
parent 4b04fc65ad
commit c0cd4ead04
34 changed files with 684 additions and 35 deletions

View File

@@ -8,7 +8,7 @@
#pragma once
#include "asset.h"
#define ASSET_MANAGER_ASSET_COUNT_MAX 256
#define ASSET_MANAGER_ASSET_COUNT_MAX 32
#if ASSET_TYPE == wad
#else

View File

@@ -9,8 +9,8 @@
#include "error/error.h"
#include "display/texture/texture.h"
#define ASSET_PALETTE_IMAGE_WIDTH_MAX 256
#define ASSET_PALETTE_IMAGE_HEIGHT_MAX 256
#define ASSET_PALETTE_IMAGE_WIDTH_MAX 128
#define ASSET_PALETTE_IMAGE_HEIGHT_MAX 128
#define ASSET_PALETTE_IMAGE_SIZE_MAX ( \
ASSET_PALETTE_IMAGE_WIDTH_MAX * ASSET_PALETTE_IMAGE_HEIGHT_MAX \
)