introduce Qt support for color of map frame

This commit is contained in:
nhmall
2023-01-01 20:03:30 -05:00
parent 2fc0d25d45
commit 0a03ca1e99
5 changed files with 86 additions and 31 deletions

View File

@@ -524,11 +524,11 @@ void NetHackQtBind::qt_cliparound_window(winid wid, int x, int y)
void NetHackQtBind::qt_print_glyph(
winid wid, coordxy x, coordxy y,
const glyph_info *glyphinfo,
const glyph_info *bkglyphinfo UNUSED)
const glyph_info *bkglyphinfo)
{
/* TODO: bkglyph */
NetHackQtWindow *window = id_to_window[(int) wid];
window->PrintGlyph(x, y, glyphinfo);
window->PrintGlyph(x, y, glyphinfo, bkglyphinfo);
}
#if 0