diff options
Diffstat (limited to 'src/gui/shop.cpp')
-rw-r--r-- | src/gui/shop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/shop.cpp b/src/gui/shop.cpp index d15e7367..3f30732a 100644 --- a/src/gui/shop.cpp +++ b/src/gui/shop.cpp @@ -68,7 +68,7 @@ void ShopItems::clear() mItemsShop.clear(); } -std::vector<ITEM_SHOP> ShopItems::getShop() +std::vector<ITEM_SHOP>* ShopItems::getShop() { - return mItemsShop; + return &mItemsShop; } |