1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-06-10 18:34:08 +00:00
This commit is contained in:
Zeno Rogue 2020-06-08 01:52:27 +02:00
parent dfe78c51d0
commit 9265fe197b

View File

@ -152,15 +152,11 @@ void draw_at(transmatrix T, color_t col) {
} }
void draw_magma() { void draw_magma() {
if() {
if(heps.empty()) make(); if(heps.empty()) make();
transmatrix V = ggmatrix(currentmap.gamestart()); transmatrix V = ggmatrix(currentmap->gamestart());
println(hlog, "V = ", V);
for(auto h: heps) for(auto h: heps)
draw_at(V * h.first, h.second); draw_at(V * h.first, h.second);
} }
return false;
}
int readArgs() { int readArgs() {
using namespace arg; using namespace arg;