From 6e3619022144a39c57de8aab83ee07326ac61694 Mon Sep 17 00:00:00 2001 From: Sergey Semushin Date: Sat, 13 Jul 2019 14:45:55 +0300 Subject: [PATCH] Fix typo in LoadPremium, SavePremium. --- Source/loadsave.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/loadsave.cpp b/Source/loadsave.cpp index 07a04e31f..54fa5e974 100644 --- a/Source/loadsave.cpp +++ b/Source/loadsave.cpp @@ -737,7 +737,7 @@ void CopyItems(const int n, ItemStruct *pItem) void LoadPremium(int i) { - CopyItem(&item[i]); + CopyItem(&premiumitem[i]); } void LoadQuest(int i) @@ -1425,7 +1425,7 @@ void SaveItems(ItemStruct *pItem, const int n) void SavePremium(int i) { - SaveItem(&item[i]); + SaveItem(&premiumitem[i]); } void SaveQuest(int i)