1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 00:17:39 +00:00

fixed missing CAP_RACING guards

This commit is contained in:
Zeno Rogue
2019-01-24 14:50:36 +01:00
parent 3e4fd1d1b8
commit 3a8a5a6150
4 changed files with 10 additions and 6 deletions

View File

@@ -374,7 +374,11 @@ void drawStats() {
}
if(racing::on)
#if CAP_RACING
racing::drawStats();
#else
{}
#endif
else if(vid.xres > vid.yres * 85/100 && vid.yres > vid.xres * 85/100) {
int bycorner[4];
for(int u=0; u<4; u++) bycorner[u] = 0;