CMorphBall: Make use of constexpr on file-scope arrays

Same behavior, but allows elision of runtime initializers.
This commit is contained in:
Lioncash 2020-04-11 20:41:49 -04:00
parent 1b42bda711
commit fef6711ce8
1 changed files with 3 additions and 3 deletions

View File

@ -204,7 +204,7 @@ constexpr std::array<CMorphBall::ColorArray, 9> BallSwooshColorsJaggy{{
}}; }};
} // Anonymous namespace } // Anonymous namespace
const std::array<CMorphBall::ColorArray, 9> CMorphBall::BallGlowColors{{ constexpr std::array<CMorphBall::ColorArray, 9> CMorphBall::BallGlowColors{{
{0xff, 0xff, 0xff}, {0xff, 0xff, 0xff},
{0xff, 0xff, 0xff}, {0xff, 0xff, 0xff},
{0xff, 0xff, 0xff}, {0xff, 0xff, 0xff},
@ -216,7 +216,7 @@ const std::array<CMorphBall::ColorArray, 9> CMorphBall::BallGlowColors{{
{0xff, 0xff, 0xff}, {0xff, 0xff, 0xff},
}}; }};
const std::array<CMorphBall::ColorArray, 9> CMorphBall::BallTransFlashColors{{ constexpr std::array<CMorphBall::ColorArray, 9> CMorphBall::BallTransFlashColors{{
{0xc2, 0x7e, 0x10}, {0xc2, 0x7e, 0x10},
{0x66, 0xc4, 0xff}, {0x66, 0xc4, 0xff},
{0x60, 0xff, 0x90}, {0x60, 0xff, 0x90},
@ -228,7 +228,7 @@ const std::array<CMorphBall::ColorArray, 9> CMorphBall::BallTransFlashColors{{
{0xfb, 0x98, 0x21}, {0xfb, 0x98, 0x21},
}}; }};
const std::array<CMorphBall::ColorArray, 9> CMorphBall::BallAuxGlowColors{{ constexpr std::array<CMorphBall::ColorArray, 9> CMorphBall::BallAuxGlowColors{{
{0xc2, 0x7e, 0x10}, {0xc2, 0x7e, 0x10},
{0x66, 0xc4, 0xff}, {0x66, 0xc4, 0xff},
{0x6c, 0xff, 0x61}, {0x6c, 0xff, 0x61},