From 476f9ba40d5b59fd724ac1234b34448df372d52c Mon Sep 17 00:00:00 2001 From: mid-kid Date: Sun, 12 May 2019 16:46:40 +0200 Subject: Define appropriate constants as EQU These constants are defined only once and shouldn't be redefined anyway. --- docs/design_flaws.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/design_flaws.md b/docs/design_flaws.md index 8669bc7a6..bcabff901 100644 --- a/docs/design_flaws.md +++ b/docs/design_flaws.md @@ -332,7 +332,7 @@ Edit `GetMapMusic`: add_tm PSYCHIC_M ; dd ... add_tm NIGHTMARE ; f2 -NUM_TMS = const_value - TM01 - 2 ; discount ITEM_C3 and ITEM_DC +NUM_TMS EQU const_value - TM01 - 2 ; discount ITEM_C3 and ITEM_DC ``` `GetTMHMNumber` and `GetNumberedTMHM` in [engine/items/items.asm](https://github.com/pret/pokecrystal/blob/master/engine/items/items.asm) have to compensate for this. -- cgit v1.2.3