mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 23:12:15 +00:00
- Exhumed: Use range-based loop in seq_LoadSequences()
.
This commit is contained in:
parent
ad87f9ba54
commit
dc8be29354
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue