mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-12 21:37:59 -05:00
OnScreenDisplay: fix names rgba -> argb
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user