From 53c807de5d516ff7186bc6886924bba66d7e10c0 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Mon, 18 May 2015 21:56:29 -0700 Subject: [PATCH] File not found. --- src/xenia/kernel/fs/devices/host_path_entry.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/kernel/fs/devices/host_path_entry.cc b/src/xenia/kernel/fs/devices/host_path_entry.cc index 7acd0fb5b..85b49f4be 100644 --- a/src/xenia/kernel/fs/devices/host_path_entry.cc +++ b/src/xenia/kernel/fs/devices/host_path_entry.cc @@ -150,7 +150,7 @@ X_STATUS HostPathEntry::Open(KernelState* kernel_state, Mode mode, bool async, flags_and_attributes | FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file == INVALID_HANDLE_VALUE) { // TODO(benvanik): pick correct response. - return X_STATUS_ACCESS_DENIED; + return X_STATUS_NO_SUCH_FILE; } *out_file = new HostPathFile(kernel_state, mode, this, file);