mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-03 15:55:30 +03:00
Remove double NULL check in loadthissummary()
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
61adffe6eb
commit
64bad7d67f
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user