mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Remove double NULL check in loadthissummary()
This commit is contained in:
parent
61adffe6eb
commit
64bad7d67f
1 changed files with 0 additions and 6 deletions
|
@ -5611,16 +5611,10 @@ static void loadthissummary(
|
||||||
pText = "";
|
pText = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pText == NULL)
|
|
||||||
{
|
|
||||||
pText = "";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (SDL_strcmp(pKey, "summary") == 0)
|
if (SDL_strcmp(pKey, "summary") == 0)
|
||||||
{
|
{
|
||||||
summary->summary = pText;
|
summary->summary = pText;
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (SDL_strcmp(pKey, "seconds") == 0)
|
else if (SDL_strcmp(pKey, "seconds") == 0)
|
||||||
{
|
{
|
||||||
summary->seconds = help.Int(pText);
|
summary->seconds = help.Int(pText);
|
||||||
|
|
Loading…
Reference in a new issue