From fa1f237f3789725e89ae15be28c2265ea2dbde86 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 17 Sep 2022 15:16:26 +0200 Subject: [PATCH] ads-game:: less expensive --- rogueviz/ads/display.cpp | 2 +- rogueviz/ads/map.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rogueviz/ads/display.cpp b/rogueviz/ads/display.cpp index e8190f4e..ccd8d7fa 100644 --- a/rogueviz/ads/display.cpp +++ b/rogueviz/ads/display.cpp @@ -129,7 +129,7 @@ void draw_game_cell(cell *cs, ads_matrix V, ld plev) { bool view_ads_game() { auto plev = cgi.plevel; /* we are in another CGI so we have no access to that... */ - gen_budget = 5; + gen_budget = 3; displayed.clear(); vctr = new_vctr; diff --git a/rogueviz/ads/map.cpp b/rogueviz/ads/map.cpp index fb7a700f..d0588217 100644 --- a/rogueviz/ads/map.cpp +++ b/rogueviz/ads/map.cpp @@ -67,7 +67,7 @@ void compute_life(cell *c, transmatrix S1, const worldline_visitor& wv) { return true; } return false; - }, 20); + }, 10); if(!next_c) return; S1 = next_S1; cur_w = next_w;