- 81
- Posts
- 9
- Years
- She/her/hers
- Seen Oct 26, 2023
Hey y'all,
So, I'm working on applying the Complete FireRed Upgrade to my expanded ROM.
However, the command prompt returns this error when I try to compile:
PS C:\Users\Madison\Desktop\Complete-Fire-Red-Upgrade-master> python scripts//make.py
./build\cf8cf7f86d49adb1aea7fd022f3da2b9.o: In function `BS_187_Yawn':
(.text+0x2737): undefined reference to `SPECIES_MINIORSHIELD'
./build\78571311a98acd87909fd0b2977a0260.o: In function `BattleScript_WasFrozen':
(.text+0x51): undefined reference to `SPECIES_SHAYMINSKY'
PS C:\Users\Madison\Desktop\Complete-Fire-Red-Upgrade-master>
So, I went to include/constants/species.h and added the following definitions:
#define SPECIES_SHAYMINSKY 0x2CF
#define SPECIES_MINIORSHIELD 0x3DF
However, I'm still getting the error, even though the references have been defined. I tried editing cf8cf7f86d49adb1aea7fd022f3da2b9.o in Notepad++ to edit the references, but when I'm not sure what I'm looking at when I do so. I certainly can't find the references.
Anyone got any ideas?
So, I'm working on applying the Complete FireRed Upgrade to my expanded ROM.
However, the command prompt returns this error when I try to compile:
Spoiler:
PS C:\Users\Madison\Desktop\Complete-Fire-Red-Upgrade-master> python scripts//make.py
./build\cf8cf7f86d49adb1aea7fd022f3da2b9.o: In function `BS_187_Yawn':
(.text+0x2737): undefined reference to `SPECIES_MINIORSHIELD'
./build\78571311a98acd87909fd0b2977a0260.o: In function `BattleScript_WasFrozen':
(.text+0x51): undefined reference to `SPECIES_SHAYMINSKY'
PS C:\Users\Madison\Desktop\Complete-Fire-Red-Upgrade-master>
So, I went to include/constants/species.h and added the following definitions:
Spoiler:
#define SPECIES_SHAYMINSKY 0x2CF
#define SPECIES_MINIORSHIELD 0x3DF
However, I'm still getting the error, even though the references have been defined. I tried editing cf8cf7f86d49adb1aea7fd022f3da2b9.o in Notepad++ to edit the references, but when I'm not sure what I'm looking at when I do so. I certainly can't find the references.
Anyone got any ideas?