From 2277bf752613da2f616441ae6fad85310030a81d Mon Sep 17 00:00:00 2001 From: Dniel97 Date: Tue, 15 Aug 2023 20:23:28 +0200 Subject: [PATCH] all: fix accounting issue (my bad) --- platform/vfs.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/platform/vfs.c b/platform/vfs.c index 9f620d8..02e3ea2 100644 --- a/platform/vfs.c +++ b/platform/vfs.c @@ -28,9 +28,7 @@ static HRESULT vfs_reg_read_amfs(void *bytes, uint32_t *nbytes); static HRESULT vfs_reg_read_appdata(void *bytes, uint32_t *nbytes); static wchar_t vfs_nthome_real[MAX_PATH]; -// new home for ALLS -static const wchar_t vfs_nthome[] = L"C:\\Users\\AppUser"; -// static const wchar_t vfs_nthome[] = L"C:\\Documents and Settings\\AppUser"; +static const wchar_t vfs_nthome[] = L"C:\\Documents and Settings\\AppUser"; static const size_t vfs_nthome_len = _countof(vfs_nthome) - 1; static const wchar_t vfs_option[] = L"C:\\Mount\\Option";