diff options
author | YamaArashi <shadow962@live.com> | 2016-11-04 21:30:42 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-11-04 21:30:42 -0700 |
commit | d40d2d9372bdd99ec8f0d8608da9c31d02472f87 (patch) | |
tree | 2d76c7ca7196a90715a3486aa9ead21831d72aeb | |
parent | f5438ed834f5b665b263753dfe6871597b24c4ac (diff) |
make item quantity u16
-rw-r--r-- | include/global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h index e90a5797e..bbae9faf9 100644 --- a/include/global.h +++ b/include/global.h @@ -110,7 +110,7 @@ struct WarpData struct ItemSlot { u16 itemId; - u8 quantity; + u16 quantity; }; struct Pokeblock |