mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
- fixed uninitialized 'isInitialized' variable in FGameConfigFile.
This commit is contained in:
parent
61fbbc56c0
commit
83d56f56d5
2 changed files with 2 additions and 1 deletions
|
@ -66,7 +66,7 @@ private:
|
||||||
void ReadCVars (unsigned flags);
|
void ReadCVars (unsigned flags);
|
||||||
|
|
||||||
bool bModSetup;
|
bool bModSetup;
|
||||||
bool isInitialized;
|
bool isInitialized = false;
|
||||||
|
|
||||||
char section[64];
|
char section[64];
|
||||||
char *subsection;
|
char *subsection;
|
||||||
|
|
|
@ -51,6 +51,7 @@ struct MapRecord
|
||||||
void SetFileName(const char* n)
|
void SetFileName(const char* n)
|
||||||
{
|
{
|
||||||
fileName = n;
|
fileName = n;
|
||||||
|
FixPathSeperator(fileName);
|
||||||
labelName = ExtractFileBase(n);
|
labelName = ExtractFileBase(n);
|
||||||
}
|
}
|
||||||
const char* GetMessage(int num)
|
const char* GetMessage(int num)
|
||||||
|
|
Loading…
Reference in a new issue