Closed hellow554 closed 10 months ago
This code produces the following error:
org $8000 dw BgmArray[0] BgmArray: dw 0
: error: (Ephantom_error): A phantom error occurred. This is an Asar bug, please report it: https://github.com/RPGHacker/asar/issues
If you replace BgmArray[0] with BgmArray+0, it works, but I like the array syntax more, because BgmArray is a struct in my case, not a simple label.
BgmArray[0]
BgmArray+0
BgmArray
phantom error fixed, and this syntax now works with all structs. (doesn't work with regular labels though, asar has no clue what their size should be.)
This code produces the following error:
: error: (Ephantom_error): A phantom error occurred. This is an Asar bug, please report it: https://github.com/RPGHacker/asar/issues
If you replace
BgmArray[0]
withBgmArray+0
, it works, but I like the array syntax more, becauseBgmArray
is a struct in my case, not a simple label.