diff options
author | rtk0c <[email protected]> | 2022-05-29 16:15:49 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-05-29 16:15:49 -0700 |
commit | e513b9336ce0fa8b3ee004560b2fadb998a7e5e0 (patch) | |
tree | 804512a4b889ea1e85974814ee82ae19dbe61f5c | |
parent | 123f741e3f5374b93ac39887b62bfa0d66762ae2 (diff) |
Changeset: 44 Fix capitalization typo in Level.cpp
-rw-r--r-- | source/Level.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Level.cpp b/source/Level.cpp index ea3e9a9..5881084 100644 --- a/source/Level.cpp +++ b/source/Level.cpp @@ -68,7 +68,7 @@ Level* LevelManager::FindLevel(const Uid& uid) const { } #define BRUSSEL_DEF_LEVEL_NAME "New Level" -#define BRUSSEl_DEF_LEVEL_DESC "No description." +#define BRUSSEL_DEF_LEVEL_DESC "No description." Level* LevelManager::LoadLevel(const Uid& uid) { auto iter = mObjByUid.find(uid); @@ -95,7 +95,7 @@ Level* LevelManager::LoadLevel(const Uid& uid) { #if defined(BRUSSEL_DEV_ENV) BRUSSEL_JSON_GET_DEFAULT(root, "Name", std::string, ldObj.name, BRUSSEL_DEF_LEVEL_NAME); - BRUSSEL_JSON_GET_DEFAULT(root, "Description", std::string, ldObj.description, BRUSSEl_DEF_LEVEL_DESC) + BRUSSEL_JSON_GET_DEFAULT(root, "Description", std::string, ldObj.description, BRUSSEL_DEF_LEVEL_DESC) #endif auto rvEntries = rapidjson::GetProperty(root, rapidjson::kArrayType, "DataEntries"sv); @@ -127,7 +127,7 @@ LevelManager::LoadableObject& LevelManager::AddLevel(const Uid& uid) { auto& ldObj = iter->second; #if defined(BRUSSEL_DEV_ENV) ldObj.name = BRUSSEL_DEF_LEVEL_NAME; - ldObj.description = BRUSSEl_DEF_LEVEL_DESC; + ldObj.description = BRUSSEL_DEF_LEVEL_DESC; #endif return ldObj; } |