removed storing two strings in function for level filenames
authorHolger Schemel <info@artsoft.org>
Fri, 24 Aug 2018 10:45:38 +0000 (12:45 +0200)
committerHolger Schemel <info@artsoft.org>
Fri, 24 Aug 2018 10:45:38 +0000 (12:45 +0200)
commit6cbd0028a9da3f09329f30e2424160fa0bc1882d
tree742b695f36114c49fbeda6115aa539470cf7ce25
parent759e0bea3ad909b5be8757aa7c2409fc1c52f493
removed storing two strings in function for level filenames

Before, the function "getLevelFilenameFromBasename()" stored two
filenames in static string pointers, one for the level filename, and one
for the corresponding level template filename, because the results were
only used as references before. As they are now stored as string copies
outside if this function, it is sufficient to only store the last result.

This change is directly related to commit 759e0bea.
src/files.c