1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-08 00:01:24 +00:00

one more compiler error

This commit is contained in:
Zeno Rogue
2026-05-02 16:56:40 +02:00
parent 83673497d6
commit 4c6897d45a

View File

@@ -1009,7 +1009,7 @@ namespace levelline {
lv.values.push_back(-1e10);
if(!distro_based) {
int steps = 1 << (lv.qty-1);
for(int r=0; r < steps; r++) lv.values.push_back(lerp(sample[0], sample.back(), (r + .5) / steps));
for(int r=0; r < steps; r++) lv.values.push_back(hr::lerp(sample[0], sample.back(), (r + .5) / steps));
}
else {
int step = sampsize >> (lv.qty);
@@ -1444,7 +1444,7 @@ bool draw_heatmap() {
curvepoint(eupoint(width*2, y));
curvepoint(eupoint(width*2, y+pixstep));
curvepoint(eupoint(width, y+pixstep));
queuecurve(atscreenpos(0,0), 0, darkena(heatmap(ilerp(width, vid.yres-width, y+pixstep/2.)), 0, 0xFF), PPR::LINE);
queuecurve(atscreenpos(0,0), 0, darkena(heatmap(hr::ilerp(width, vid.yres-width, y+pixstep/2.)), 0, 0xFF), PPR::LINE);
}
for(int p=0; p<=10; p++) {
ld y = hr::lerp(width, vid.yres-width, p / 10.);