From 52dda5fc0fa64733bfc14cd76b1e278f7246a73b Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Sun, 30 Oct 2022 22:52:22 -0300 Subject: [PATCH] Actually removed ItemId_GetId --- src/item.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/item.c b/src/item.c index 9266e28b3..18b6242c4 100644 --- a/src/item.c +++ b/src/item.c @@ -880,12 +880,6 @@ const u8 *ItemId_GetName(u16 itemId) return gItems[SanitizeItemId(itemId)].name; } -// Unused -u16 ItemId_GetId(u16 itemId) -{ - return gItems[SanitizeItemId(itemId)].itemId; -} - u16 ItemId_GetPrice(u16 itemId) { return gItems[SanitizeItemId(itemId)].price;