summaryrefslogtreecommitdiff
path: root/src/saveload/industry_sl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/saveload/industry_sl.cpp')
-rw-r--r--src/saveload/industry_sl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/saveload/industry_sl.cpp b/src/saveload/industry_sl.cpp
index 9b4dd2b3d..42c8fda32 100644
--- a/src/saveload/industry_sl.cpp
+++ b/src/saveload/industry_sl.cpp
@@ -107,12 +107,12 @@ static void Load_INDY()
{
int index;
- ResetIndustryCounts();
+ Industry::ResetIndustryCounts();
while ((index = SlIterateArray()) != -1) {
Industry *i = new (index) Industry();
SlObject(i, _industry_desc);
- IncIndustryTypeCount(i->type);
+ Industry::IncIndustryTypeCount(i->type);
}
}