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

gp:: compile without CAP_TEXTURE

This commit is contained in:
Zeno Rogue 2018-04-18 20:53:37 +02:00
parent f1bcd91de5
commit c33d2b3707

View File

@ -440,8 +440,10 @@ namespace gp {
}
void whirl_set(loc xy, bool texture_remap) {
#if CAP_TEXTURE
auto old_tstate = texture::config.tstate;
auto old_tstate_max = texture::config.tstate_max;
#endif
xy = internal_representation(xy);
if(xy.second && elliptic) {
if(xy.second==xy.first)
@ -466,8 +468,10 @@ namespace gp {
param = xy;
restartGame(rg::gp);
}
#if CAP_TEXTURE
if(texture_remap)
texture::config.remap(old_tstate, old_tstate_max);
#endif
screens = g;
}