diff --git a/JContainers/src/jcontainers_constants.h b/JContainers/src/jcontainers_constants.h index 59645911..b18f547c 100644 --- a/JContainers/src/jcontainers_constants.h +++ b/JContainers/src/jcontainers_constants.h @@ -16,7 +16,7 @@ namespace collections { "." STR(JC_FEATURE_VERSION) \ "." STR(JC_PATCH_VERSION) -# define JC_USER_FILES "My Games/Skyrim/JCUser/" +# define JC_USER_FILES "My Games/Skyrim Special Edition/JCUser/" # define JC_DATA_FILES "JCData/" enum class consts : uint32_t { diff --git a/JContainers/src/skse_callbacks.cpp b/JContainers/src/skse_callbacks.cpp index 5a9c10f6..edb68e7d 100644 --- a/JContainers/src/skse_callbacks.cpp +++ b/JContainers/src/skse_callbacks.cpp @@ -118,7 +118,7 @@ namespace { extern "C" { __declspec(dllexport) bool SKSEPlugin_Query(const SKSEInterface * skse, PluginInfo * info) { - gLog.OpenRelative(CSIDL_MYDOCUMENTS, "\\My Games\\Skyrim\\SKSE\\" JC_PLUGIN_NAME ".log"); + gLog.OpenRelative(CSIDL_MYDOCUMENTS, "\\My Games\\Skyrim Special Edition\\SKSE\\" JC_PLUGIN_NAME ".log"); gLog.SetPrintLevel(IDebugLog::kLevel_Error); gLog.SetLogLevel(IDebugLog::kLevel_DebugMessage); diff --git a/api_usage_example/Source.cpp b/api_usage_example/Source.cpp index 53004590..4c03da6c 100644 --- a/api_usage_example/Source.cpp +++ b/api_usage_example/Source.cpp @@ -102,7 +102,7 @@ extern "C" { __declspec(dllexport) bool SKSEPlugin_Query(const SKSEInterface * skse, PluginInfo * info) { - gLog.OpenRelative(CSIDL_MYDOCUMENTS, "\\My Games\\Skyrim\\SKSE\\" PLUGIN_NAME ".log"); + gLog.OpenRelative(CSIDL_MYDOCUMENTS, "\\My Games\\Skyrim Special Edition\\SKSE\\" PLUGIN_NAME ".log"); gLog.SetPrintLevel(IDebugLog::kLevel_Error); gLog.SetLogLevel(IDebugLog::kLevel_DebugMessage);