From 9f143894898fadc5e0fc5bc9a3970c3c2f7a2413 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 18 Oct 2020 14:37:55 +0200 Subject: [PATCH] fixed cgi_string in product --- geometry.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/geometry.cpp b/geometry.cpp index 431baa51..8cf49153 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -1041,7 +1041,10 @@ EX string cgi_string() { if(bt::in() || GDIM == 3) V("WQ", its(vid.texture_step)); - if(hybri) V("U", its(int(hybrid::underlying))); + if(hybri) { + V("U", PIU(cgi_string())); + // its(int(hybrid::underlying))); + } if(prod) V("PL", fts(vid.plevel_factor));