From b6a6e9b3e5ca4d802f9d45e5b99ff1b81cb94ba1 Mon Sep 17 00:00:00 2001 From: Xiao Qi Date: Tue, 13 Sep 2022 11:28:16 +0800 Subject: [PATCH] Updated some const --- SHADE_Engine/src/Filesystem/SHFileSystem.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SHADE_Engine/src/Filesystem/SHFileSystem.h b/SHADE_Engine/src/Filesystem/SHFileSystem.h index 2eff32bd..9b8b94a2 100644 --- a/SHADE_Engine/src/Filesystem/SHFileSystem.h +++ b/SHADE_Engine/src/Filesystem/SHFileSystem.h @@ -8,6 +8,7 @@ namespace SHADE { class SHFolder; + typedef unsigned char FolderCounter; typedef unsigned char FileCounter; typedef uint64_t FolderLocation; @@ -17,7 +18,7 @@ namespace SHADE typedef SHFolder* FolderPointer; constexpr char FOLDER_BIT_ALLOCATE{ 4 }; - constexpr char FOLDER_MAX_DEPTH{ 26 }; + constexpr char FOLDER_MAX_DEPTH{ 16 }; class SHFolder {