Take item scales from TP HD, fix file select. Skip main2d.arc and Field0.arc from HD for now to get full map and GC buttons at the the upper right working

This commit is contained in:
Lurs
2026-08-11 23:20:08 +02:00
parent 524f7ec2b1
commit d6e4d0b58d
4 changed files with 73 additions and 28 deletions
+5 -1
View File
@@ -58,7 +58,11 @@ struct dItem_data {
static s16 getTexture(u8 index) { return item_resource[index].mTexture; }
static u8 getTexScale (u8 index) { return item_resource[index].mTexScale; }
#if TARGET_PC
static u8 getTexScale(u8 index);
#else
static u8 getTexScale(u8 index) { return item_resource[index].mTexScale; }
#endif
static const char* getFieldArc(u8 index) { return field_item_res[index].mFieldArc; }