diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-12 12:28:18 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-15 13:27:04 -0400 |
commit | 1bbc61f5f1f65478727fbe6351240331d77f104d (patch) | |
tree | f1e637dcf1983ae17188e220d730756bc914b606 /src/core/file_sys | |
parent | 8794e623d99d6179ab15f76ddf473002d112fc3a (diff) |
Use proper install result when overwriting files
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/registered_cache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/registered_cache.cpp b/src/core/file_sys/registered_cache.cpp index 0f4d52d35..92417ef70 100644 --- a/src/core/file_sys/registered_cache.cpp +++ b/src/core/file_sys/registered_cache.cpp @@ -643,7 +643,7 @@ InstallResult RegisteredCache::InstallEntry(const NSP& nsp, bool overwrite_if_ex Refresh(); if (result) { - return InstallResult::ErrorAlreadyExists; + return InstallResult::OverwriteExisting; } return InstallResult::Success; } |