You are not logged in.
Pages: 1
hey, I tried to do the Danny-E33's Larger backsprite routine, and it worked, but when I tried to put more backsprites, this happened:
error: Unable to place 'Battle (bank B)' (ROMX section) at $7CBC in bank $0B
make: *** [Makefile:52: pokered.gbc] Error 1
There is a similar post in the forum, but it wasn't the same error as mine. Can someone help me?
Offline
You might want to shuffle the backsprites around, maybe even create new banks in 2D and 2E.
Offline
It doesn't look like the same error, but it is the same problem discussed in the original thread on this
Bank $0B has run out of room so you need move some mon pics to other banks
As Fotomac pointed out, banks $2D and $2E are completely empty, unless you've already started using them for something else
Once you move the pics to new banks, you need to confirm that you have the modified UncompressMonSprite:: routine from the Pokemon Red Gen II hack:
https://github.com/dannye/pokered-gen-I … e.asm#L715
You need to make sure that the two fossil pics and the ghost pic are all in the same bank as each other (doesn't matter which bank, but all 3 must be in the same bank)
And you need to make sure each base stats file in data/baseStats/ has the last line changed from "db 0 ; padding" to "db BANK(*PicFront)" (of course, replace '*' with the name of the pokemon)
Offline
Pages: 1