From 2354be07e59094e0205d3e48da9e28c2f284cdc5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 7 Aug 2022 02:54:25 +0200 Subject: [PATCH] rulegen3:: specified args to arg::args --- rulegen3.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rulegen3.cpp b/rulegen3.cpp index b157756c..f03bc798 100644 --- a/rulegen3.cpp +++ b/rulegen3.cpp @@ -1495,7 +1495,7 @@ int readRuleArgs3() { using namespace arg; if(0) ; else if(argis("-gen-honeycomb")) { - shift(); genhoneycomb(args()); + shift(); genhoneycomb(arg::args()); } else if(argis("-urq")) { @@ -1511,7 +1511,7 @@ int readRuleArgs3() { else if(argis("-subrule")) { stop_game(); shift(); reg3::other_rule = args(); - shstream ins(decompress_string(read_file_as_string(args()))); + shstream ins(decompress_string(read_file_as_string(arg::args()))); ins.read(ins.vernum); mapstream::load_geometry(ins); reg3::subrule = true;