1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-25 20:33:32 +00:00

rogueviz:: sag:: better colors in fake_data

This commit is contained in:
Zeno Rogue
2025-12-04 23:36:31 +01:00
parent aa808bf77d
commit 18aeafe310

View File

@@ -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;
}
}