1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-12 19:53:00 +00:00

adjusted Rogueviz to HR changes

This commit is contained in:
Zeno Rogue
2019-12-27 12:50:56 +01:00
parent 0aa94f073a
commit 1cfeba9666
3 changed files with 16 additions and 13 deletions

View File

@@ -89,12 +89,12 @@ struct storydata { int s; int e; const char *text; } story[] = {
if(dt && drawtris < 255) drawtris++;
else if(drawtris && !dt) drawtris--;
linepatterns::setColor(linepatterns::patZebraTriangles, 0x40FF4000 + drawtris);
linepatterns::patZebraTriangles.color = 0x40FF4000 + drawtris;
if(dn && drawnet < 255) drawnet++;
else if(drawnet && !dn) drawnet--;
linepatterns::setColor(linepatterns::patZebraLines, 0xFF000000 + drawnet);
linepatterns::patZebraLines.color = 0xFF000000 + drawnet;
vid.grid = drawnet;