summaryrefslogtreecommitdiff
path: root/main_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'main_gui.c')
-rw-r--r--main_gui.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/main_gui.c b/main_gui.c
index 365d9b306..e1b9393da 100644
--- a/main_gui.c
+++ b/main_gui.c
@@ -1569,9 +1569,8 @@ static bool AnyTownExists(void)
{
const Town *t;
- FOR_ALL_TOWNS(t) {
- if (t->xy != 0) return true;
- }
+ FOR_ALL_TOWNS(t) return true;
+
return false;
}