Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hardcoded log folders changed to special edition #3

Merged
merged 1 commit into from
Feb 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion JContainers/src/jcontainers_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion JContainers/src/skse_callbacks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion api_usage_example/Source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down