mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-06 03:25:36 +00:00
Log: Fix inconsistent enum ordering
This commit is contained in:
parent
994dd18739
commit
942316b2d0
@ -207,8 +207,8 @@ ALWAYS_INLINE_RELEASE void Log::FormatLogMessageForDisplay(fmt::memory_buffer& b
|
|||||||
static constexpr const std::array s_ansi_color_codes = {
|
static constexpr const std::array s_ansi_color_codes = {
|
||||||
"\033[0m"sv, // default
|
"\033[0m"sv, // default
|
||||||
"\033[30m\033[1m"sv, // black
|
"\033[30m\033[1m"sv, // black
|
||||||
"\033[32m"sv, // green
|
|
||||||
"\033[31m"sv, // red
|
"\033[31m"sv, // red
|
||||||
|
"\033[32m"sv, // green
|
||||||
"\033[34m"sv, // blue
|
"\033[34m"sv, // blue
|
||||||
"\033[35m"sv, // magenta
|
"\033[35m"sv, // magenta
|
||||||
"\033[38;5;217m"sv, // orange
|
"\033[38;5;217m"sv, // orange
|
||||||
|
@ -33,8 +33,8 @@ enum class Color : u32
|
|||||||
{
|
{
|
||||||
Default,
|
Default,
|
||||||
Black,
|
Black,
|
||||||
Green,
|
|
||||||
Red,
|
Red,
|
||||||
|
Green,
|
||||||
Blue,
|
Blue,
|
||||||
Magenta,
|
Magenta,
|
||||||
Orange,
|
Orange,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user