From dc8be29354d46513c3ed9f1ddf292202185a4855 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 28 Sep 2023 11:45:55 +1000 Subject: [PATCH] - Exhumed: Use range-based loop in `seq_LoadSequences()`. --- source/games/exhumed/src/sequence.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/games/exhumed/src/sequence.cpp b/source/games/exhumed/src/sequence.cpp index b826f529f..d6ba0cc36 100644 --- a/source/games/exhumed/src/sequence.cpp +++ b/source/games/exhumed/src/sequence.cpp @@ -36,7 +36,7 @@ static FTextureID nShadowPic; static int16_t nShadowWidth = 1; int16_t nFlameHeight = 1; -constexpr const char *SeqNames[] = +static constexpr const char *SeqNames[] = { "rothands", "sword", @@ -328,11 +328,11 @@ static int addSeq(const char *seqName) void seq_LoadSequences() { - for (unsigned i = 0; i < countof(SeqNames); i++) + for (const auto& seq : SeqNames) { - if (addSeq(SeqNames[i]) == 0) + if (addSeq(seq) == 0) { - Printf("Error loading '%s'\n", SeqNames[i]); + Printf("Error loading '%s'\n", seq); } }