1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-24 05:17:17 +00:00

bugfix in CAP_RUG disabling

This commit is contained in:
Zeno Rogue 2018-01-20 17:56:33 +01:00
parent 846df5d84f
commit 679b6ed53f

View File

@ -422,8 +422,8 @@ void fix_mouseh() {
#if CAP_RUG #if CAP_RUG
else if(rug::rugged) else if(rug::rugged)
mouseh = rug::gethyper(mousex, mousey); mouseh = rug::gethyper(mousex, mousey);
else
#endif #endif
else
mouseh = gethyper(mousex, mousey); mouseh = gethyper(mousex, mousey);
need_mouseh = false; need_mouseh = false;
} }