1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-01 11:15:13 +01:00

Rename PATHID and its members

This commit is contained in:
Gymnasiast
2025-03-25 23:57:36 +01:00
parent e6762f1e08
commit 74758c77b6
10 changed files with 53 additions and 53 deletions

View File

@@ -1573,7 +1573,7 @@ void ScriptEngine::LoadSharedStorage()
{
InitSharedStorage();
auto path = _env.GetFilePath(PATHID::PLUGIN_STORE);
auto path = _env.GetFilePath(PathId::pluginStore);
try
{
if (File::Exists(path))
@@ -1595,7 +1595,7 @@ void ScriptEngine::LoadSharedStorage()
void ScriptEngine::SaveSharedStorage()
{
auto path = _env.GetFilePath(PATHID::PLUGIN_STORE);
auto path = _env.GetFilePath(PathId::pluginStore);
try
{
_sharedStorage.push();