Migrate from i* signed integer type definitions to s* integer definitions.

The `s*` format is preferred due to it being
This commit is contained in:
2026-01-20 10:26:14 +01:00
parent 1b1e906015
commit aa09b6591f
6 changed files with 29 additions and 29 deletions

View File

@@ -40,7 +40,7 @@ enum nbt_tagid {
};
struct nbt_array {
i32 nmemb;
s32 nmemb;
void *dat;
};