1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 03:09:59 +00:00

Fixed a complier error

This commit is contained in:
Zeno Rogue 2017-08-13 19:14:28 +02:00
parent f7c1cfb4e4
commit 3a35784195

View File

@ -1415,7 +1415,7 @@ void rvvideo(const char *fname) {
int steps = 0;
while(true) {
steps++;
if(isnan(View[0][0])) exit(1);
if(std::isnan(View[0][0])) exit(1);
shmup::turn(100);
drawthemap();
centerpc(100); optimizeview();