shithub: pokecrystal

Download patch

ref: 98e6878429a2c74b5293426204e0013c322d50a3
parent: 89c5f0adf0565424609482d9e789bcd045d5dbbb
author: mid-kid <esteve.varela@gmail.com>
date: Mon Feb 12 18:58:19 EST 2018

CalcwBufferMonStats -> CalcBufferMonStats

The 'w' was probably added in some mass-replacement.
It's completely irrelevant to the function itself and doesn't fit the
PascalCase model.

--- a/engine/billspc.asm
+++ b/engine/billspc.asm
@@ -1763,7 +1763,7 @@
 	ld bc, PARTYMON_STRUCT_LENGTH
 	call CopyBytes
 	call CloseSRAM
-	farcall CalcwBufferMonStats
+	farcall CalcBufferMonStats
 	ret
 
 .party
@@ -1806,7 +1806,7 @@
 	ld bc, BOXMON_STRUCT_LENGTH
 	call CopyMonToTemp
 	call CloseSRAM
-	farcall CalcwBufferMonStats
+	farcall CalcBufferMonStats
 	ret
 
 DepositPokemon: ; e307c (38:707c)
@@ -2112,7 +2112,7 @@
 	ld bc, BOXMON_STRUCT_LENGTH
 	call CopyMonToTemp
 	call CloseSRAM
-	farcall CalcwBufferMonStats
+	farcall CalcBufferMonStats
 	ld a, PC_DEPOSIT
 	ld [wPokemonWithdrawDepositParameter], a
 	farcall RemoveMonFromPartyOrBox
--- a/engine/stats_screen.asm
+++ b/engine/stats_screen.asm
@@ -230,7 +230,7 @@
 	ld a, [wMonType]
 	cp TEMPMON
 	jr nz, .breedmon
-	ld a, [wBufferMon]
+	ld a, [wBufferMonSpecies]
 	ld [wCurSpecies], a
 	call GetBaseData
 	ld hl, wBufferMon
--- a/engine/tempmon.asm
+++ b/engine/tempmon.asm
@@ -1,6 +1,6 @@
 CopyPkmnToTempMon: ; 5084a
 ; gets the BaseData of a Pkmn
-; and copys the PkmnStructure to wTempMon
+; and copies the party_struct to wTempMon
 
 	ld a, [wCurPartyMon]
 	ld e, a
@@ -32,7 +32,7 @@
 .done
 	ret
 
-CalcwBufferMonStats: ; 5088b
+CalcBufferMonStats: ; 5088b
 	ld bc, wBufferMon
 	jr _TempMonStatsCalculation