OnScreenDisplay: fix names rgba -> argb

This commit is contained in:
Felk
2020-08-02 01:31:05 +02:00
parent dbacffd75d
commit f775e9b99d
2 changed files with 12 additions and 12 deletions

View File

@ -37,9 +37,9 @@ constexpr u32 VERY_LONG = 10000;
}; // namespace Duration
// On-screen message display (colored yellow by default)
void AddMessage(std::string message, u32 ms = Duration::SHORT, u32 rgba = Color::YELLOW);
void AddMessage(std::string message, u32 ms = Duration::SHORT, u32 argb = Color::YELLOW);
void AddTypedMessage(MessageType type, std::string message, u32 ms = Duration::SHORT,
u32 rgba = Color::YELLOW);
u32 argb = Color::YELLOW);
// Draw the current messages on the screen. Only call once per frame.
void DrawMessages();