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

fixed texts not appearing

This commit is contained in:
Zeno Rogue 2019-03-03 02:56:05 +01:00
parent 30272ce45e
commit 53d5510697

View File

@ -1285,7 +1285,8 @@ void dqi_string::draw() {
svg::text(x, y, size, str, frame, color, align);
return;
}
#elif ISMOBILE==0
#endif
#if ISMOBILE==0
int fr = frame & 255;
displayfrSP(x, y, shift, fr, size, str, color, align, frame >> 8);
#else