Missed out path for config

This commit is contained in:
Xiao Qi 2022-11-10 11:14:40 +08:00
parent fa0787d349
commit 35bcdc5239
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@ namespace SHADE
class SH_API SHConfigurationManager
{
public:
static constexpr std::string_view applicationConfigPath{"../../Assets/Application.SHConfig"};
static constexpr std::string_view editorConfigPath{"../../Assets/Editor/Editor.SHConfig"};
static inline std::string applicationConfigPath{ std::string(ASSET_ROOT) + "/Application.SHConfig"};
static inline std::string editorConfigPath{ std::string(ASSET_ROOT) + "/Editor/Editor.SHConfig"};
static void SaveApplicationConfig();
static SHApplicationConfig& LoadApplicationConfig(WindowData* wndData = nullptr);