From f8391ce97e77b4e9a2f9a43b8cc71fcf23fa84d4 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 9 Mar 2017 17:44:00 +0100 Subject: [PATCH] - there was something missing... --- wadsrc/static/zscript/mapdata.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wadsrc/static/zscript/mapdata.txt b/wadsrc/static/zscript/mapdata.txt index 9b752ba40..d38d8417d 100644 --- a/wadsrc/static/zscript/mapdata.txt +++ b/wadsrc/static/zscript/mapdata.txt @@ -443,13 +443,13 @@ struct Sector native play class SectorTagIterator : Object native { - native static SectorTagIterator(int tag, line defline = null); + native static SectorTagIterator Create(int tag, line defline = null); native int Next(); native int NextCompat(bool compat, int secnum); } class LineIdIterator : Object native { - native static LineIdIterator(int tag); + native static LineIdIterator Create(int tag); native int Next(); }