[4.1.5] There is a typo in HandleUpdateObjects.asm

BinaryLab

New member
At line 518, there is a typo where the wrong End of Action is called. The EoA number 12 is called twice, instead of calling the 13th in the last one.

Starting from line 513, look for this block:

Code:
	dontUser3:
	CMP #$0D
	BNE dontUser4
	.include SCR_TIMER_END_12
	JMP actionTimerFinished

and change the label SCR_TIMER_END_12 to SCR_TIMER_END_13, which results in

Code:
	dontUser3:
	CMP #$0D
	BNE dontUser4
	.include SCR_TIMER_END_13
	JMP actionTimerFinished
 

dale_coop

Moderator
Staff member
You right, thanks GX79. I think someone already mentionned that somewhere.
I hope it will be fixed by default, in the next version.
 
Top Bottom