vfs: redir vitural AMFS partition to D:\ again

This commit is contained in:
zaphkito 2024-10-16 14:27:48 +00:00
parent 8c24e04900
commit 5f08f50bed

View File

@ -319,8 +319,8 @@ static HRESULT vfs_path_hook(const wchar_t *src, wchar_t *dest, size_t *count)
} }
switch (src[0]) { switch (src[0]) {
case L'e': case L'd':
case L'E': case L'D':
redir = vfs_config.amfs; redir = vfs_config.amfs;
break; break;
@ -502,7 +502,7 @@ static HRESULT vfs_path_hook_option(
static HRESULT vfs_reg_read_amfs(void *bytes, uint32_t *nbytes) static HRESULT vfs_reg_read_amfs(void *bytes, uint32_t *nbytes)
{ {
return reg_hook_read_wstr(bytes, nbytes, L"E:\\"); return reg_hook_read_wstr(bytes, nbytes, L"D:\\");
} }
static HRESULT vfs_reg_read_appdata(void *bytes, uint32_t *nbytes) static HRESULT vfs_reg_read_appdata(void *bytes, uint32_t *nbytes)