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

dialog:: fixed coloring of info items

This commit is contained in:
Zeno Rogue 2022-12-18 00:29:28 +01:00
parent 272523d185
commit 8ca0ef23fa

View File

@ -280,6 +280,7 @@ EX namespace dialog {
EX void addInfo(string body, color_t color IS(dialogcolor)) {
item it(diInfo);
it.body = body;
it.color = color;
items.push_back(it);
}