1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 22:53:19 +00:00

queuestr should produce frames more correctly now

This commit is contained in:
Zeno Rogue 2017-11-06 21:15:30 +01:00
parent 59b2c6b644
commit ca782dcfc9

View File

@ -2160,7 +2160,7 @@ void queuestr(int x, int y, int shift, int size, string str, int col, int frame
ptd.u.chr.shift = shift;
ptd.u.chr.size = size;
ptd.col = darkened(col);
ptd.u.chr.frame = frame ? (poly_outline & ~ 255) : 0;
ptd.u.chr.frame = frame ? ((poly_outline & ~ 255)+1) : 0;
ptd.prio = PPR_TEXT << PSHIFT;
}