Fix glHint parameter, type size and add more null checks (#130)

This commit is contained in:
Herman Semenov
2022-09-02 09:40:02 +03:00
committed by GitHub
parent f0766c845f
commit d733e03430
7 changed files with 9 additions and 11 deletions

View File

@ -12,13 +12,12 @@ namespace io
CWriteFile::CWriteFile(const io::path& fileName, bool append)
: FileSize(0)
: FileSize(0), Filename(fileName)
{
#ifdef _DEBUG
setDebugName("CWriteFile");
#endif
Filename = fileName;
openFile(append);
}