From d336a0703164f8e8cfb048a4e39a266236dd2150 Mon Sep 17 00:00:00 2001 From: Ted John Date: Fri, 26 Jan 2018 23:07:49 +0000 Subject: [PATCH] Fix bug in sub_48B244, forgot negation of flag --- src/openloco/stationmgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openloco/stationmgr.cpp b/src/openloco/stationmgr.cpp index 185766dd..da490229 100644 --- a/src/openloco/stationmgr.cpp +++ b/src/openloco/stationmgr.cpp @@ -58,7 +58,7 @@ namespace openloco::stationmgr { if (!town.empty()) { - town.flags &= town_flags::rating_adjusted; + town.flags &= ~town_flags::rating_adjusted; } }