Browse Source

Fixed Event Messages color

pull/3852/head
KPhoenix 4 years ago committed by Anders Jenbo
parent
commit
1c25cb4bf0
  1. 2
      Source/plrmsg.cpp

2
Source/plrmsg.cpp

@ -120,7 +120,7 @@ void DrawPlrMsg(const Surface &out)
y -= message.lineHeight * chatlines;
DrawHalfTransparentRectTo(out, x - 3, y, width + 6, message.lineHeight * chatlines);
DrawString(out, text, { { x, y }, { width, 0 } }, UiFlags::ColorWhite, 1, message.lineHeight);
DrawString(out, text, { { x, y }, { width, 0 } }, message.style, 1, message.lineHeight);
DrawString(out, message.from, { { x, y }, { width, 0 } }, UiFlags::ColorWhitegold, 1, message.lineHeight);
}
}

Loading…
Cancel
Save