From 18aeafe31003205ae6f23e1d1034e2505d76de8a Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 4 Dec 2025 23:36:31 +0100 Subject: [PATCH] rogueviz:: sag:: better colors in fake_data --- rogueviz/sag/data.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rogueviz/sag/data.cpp b/rogueviz/sag/data.cpp index 3bcfa68b..f5ccd67c 100644 --- a/rogueviz/sag/data.cpp +++ b/rogueviz/sag/data.cpp @@ -340,7 +340,9 @@ void generate_fake_data(int n, int m) { color_t col = ccolor::formula(sagcells[sagid[i]].first); col <<= 8; col |= 0xFF; - vdata[i].cp.color1 = vdata[i].cp.color2 = col; + vdata[i].cp.color1 = col; + vdata[i].cp.color2 = 0; + vdata[i].cp.shade = 0; } }