Language…
5 users online: Cristian Cardoso, KoJi, playagmes169, stormitive, Zavok - Guests: 231 - Bots: 332
Users: 64,795 (2,377 active)
Latest user: mathew

Question regarding OWMusic.asm

I already used this patch on my own hack with AddmusicK, but the game will freeze while music changes.
How to fix it? I think it's possible to do since SMWCP2 already fixed it.
I can't remember if this is all I did, but here you go:

- make sure all your main map tracks use the same exact samples in the same order;
- insert them and track their sizes down (I think the Stats folder helps here);
- figure out which of them has the biggest insert size;
- add #pad $size to all your main map tracks, where "size" is the biggest one;
- tell AddmusicK not to load samples while on the overworld; you can simply add this code right below ChangeMusic: in asm/SNES/patch.asm:
Code
	LDA $0100|!SA1Addr2		;;; added this
	CMP #$0E
	BNE +
	LDA #$01
	STA !NoUploadSamples
+

- use this OWMusic.asm instead (don't forget your MusicTBL);
- done (probably)

You might get weird results though.. like this (I don't even remember how I fixed that). Also "bulky" echo values might crash, regardless of whether they're legit, weirdly enough.