diff --git a/source/common/gameconfigfile.h b/source/common/gameconfigfile.h index 53f077e89..b6c4d7c8d 100644 --- a/source/common/gameconfigfile.h +++ b/source/common/gameconfigfile.h @@ -66,7 +66,7 @@ private: void ReadCVars (unsigned flags); bool bModSetup; - bool isInitialized; + bool isInitialized = false; char section[64]; char *subsection; diff --git a/source/common/mapinfo.h b/source/common/mapinfo.h index afe607d4d..bfd990353 100644 --- a/source/common/mapinfo.h +++ b/source/common/mapinfo.h @@ -51,6 +51,7 @@ struct MapRecord void SetFileName(const char* n) { fileName = n; + FixPathSeperator(fileName); labelName = ExtractFileBase(n); } const char* GetMessage(int num)