Language finished.

This commit is contained in:
2025-11-08 11:12:04 -06:00
parent ab534bb998
commit bc4776f096
9 changed files with 218 additions and 16 deletions

View File

@@ -35,7 +35,7 @@ typedef struct {
const assetloadstrat_t loadStrategy;
union {
errorret_t (*entire)(void *data, void *output);
errorret_t (*custom)(assetcustom_t *custom);
errorret_t (*custom)(assetcustom_t custom);
};
} assettypedef_t;
@@ -61,6 +61,6 @@ static const assettypedef_t ASSET_TYPE_DEFINITIONS[ASSET_TYPE_COUNT] = {
[ASSET_TYPE_LANGUAGE] = {
.header = "DLF",
.loadStrategy = ASSET_LOAD_STRAT_CUSTOM,
.custom = assetLanguageInit
.custom = assetLanguageHandler
}
};