mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-10 18:18:49 +00:00
OnScreenDisplay: fix names rgba -> argb
This commit is contained in:
parent
dbacffd75d
commit
f775e9b99d
2 changed files with 12 additions and 12 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue