From 1ed58c4a99cbeecebdb213e3d30223495038a1ef Mon Sep 17 00:00:00 2001 From: David Chavez Date: Thu, 14 Jul 2022 07:19:40 +0200 Subject: [PATCH] Fix migration cvar deletion path (#765) --- soh/soh/Enhancements/debugconsole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/debugconsole.cpp b/soh/soh/Enhancements/debugconsole.cpp index 4bb4efd19..eb2b02b11 100644 --- a/soh/soh/Enhancements/debugconsole.cpp +++ b/soh/soh/Enhancements/debugconsole.cpp @@ -521,7 +521,7 @@ void DebugConsole_LoadLegacyCVars() { } } - fs::remove("cvars.cfg"); + fs::remove(cvarsConfig); } }