Skip to content

Commit 4a9bc10

Browse files
authored
docs(file): Fix incorrect comment in File class flags (#1403)
1 parent 3b5d298 commit 4a9bc10

File tree

1 file changed

+1
-3
lines changed
  • Core/GameEngine/Include/Common

1 file changed

+1
-3
lines changed

Core/GameEngine/Include/Common/file.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@
5555
#include "Lib/BaseType.h"
5656
#include "Common/AsciiString.h"
5757
#include "Common/GameMemory.h"
58-
// include FileSystem.h as it will be used alot with File.h
59-
//#include "Common/FileSystem.h"
6058

6159
//----------------------------------------------------------------------------
6260
// Forward References
@@ -101,7 +99,7 @@ class File : public MemoryPoolObject
10199
CREATE = 0x00000008, ///< Create file if it does not exist
102100
TRUNCATE = 0x00000010, ///< Delete all data in file when opened
103101

104-
// NOTE: accesses file as text data if neither TEXT and BINARY are set
102+
// NOTE: accesses file as binary data if neither TEXT and BINARY are set
105103
TEXT = 0x00000020, ///< Access file as text data
106104
BINARY = 0x00000040, ///< Access file as binary data
107105

0 commit comments

Comments
 (0)