1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-27 07:52:19 +00:00

fix correct outline for mouseovers display

This commit is contained in:
Zeno Rogue 2025-08-17 03:10:33 +02:00
parent e2600f7536
commit ebaeb9d7f0

View File

@ -6148,6 +6148,7 @@ EX void drawscreen() {
if(nohelp != 1) { if(nohelp != 1) {
int size = vid.fsize; int size = vid.fsize;
while(size > 3 && textwidth(size, mouseovers) > vid.xres) size--; while(size > 3 && textwidth(size, mouseovers) > vid.xres) size--;
poly_outline = (backcolor << 8) | 0xFF;
displayfr(vid.xres/2, vid.fsize, 2, size, mouseovers, col, 8); displayfr(vid.xres/2, vid.fsize, 2, size, mouseovers, col, 8);
} }
#endif #endif