diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-05-15 16:59:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 18:59:55 -0500 |
commit | f402e46cd3c8b7236673d6edbae77903a7cc0618 (patch) | |
tree | 37a19f3ab35a73c29d4d6da565741beaf7bb547f /include/trade_items_menu.h | |
parent | f65dee5a143bd543c74c010d7252eb76893ee243 (diff) |
Sese's April/May Dump (#37)
* splitting lots of pokemon square and labeling lots of other things
* actually commit this stuff
* more moving data and things
* more screen work
* split out some pokemon dungeon data
* lots of data work
* push more data work
* split kecleon, decomp another kanghaskhan func, and try to doc UpdateBGControl more
* lots of item work
* label more item things
* subtype -> category and doc types/category
Diffstat (limited to 'include/trade_items_menu.h')
-rw-r--r-- | include/trade_items_menu.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/trade_items_menu.h b/include/trade_items_menu.h index 73435a3..36e6054 100644 --- a/include/trade_items_menu.h +++ b/include/trade_items_menu.h @@ -8,9 +8,9 @@ struct unkData struct TradeSubStruct { - u8 unk0; // item id? + u8 itemIndex; // item id? u8 fill3[0x3]; - u32 unk4; // number of items? + u32 numItems; // number of items? }; @@ -22,7 +22,7 @@ struct TradeItemsMenu u32 itemMode; u32 linkStatus; u32 unk10; - u32 unk14; // item # + u32 numItemsToSend; // item # u32 unk18; u32 unk1C; u32 unk20; @@ -49,8 +49,8 @@ struct TradeItemsMenu struct TradeSubStruct unk254; u8 unk25C; - u8 unk25D; - u8 unk25E; + u8 chosenNum; + u8 chosenItem; u8 fill25F[0x3A0 - 0x25F]; }; |