aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/file_backend.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-12-28 10:17:06 -0500
committerSubv <subv2112@gmail.com>2016-03-20 14:28:22 -0500
commit95b34f8081e26cfe75d63a853d1626fdd5b636e6 (patch)
treea25b91d70bf84ad71922f63f2f92e37320d2bbfa /src/core/file_sys/file_backend.h
parent802ef6d09956a94e19a9426e90bbca4cb103146f (diff)
HLE/FS: Return the proper error codes when opening files.
Diffstat (limited to 'src/core/file_sys/file_backend.h')
-rw-r--r--src/core/file_sys/file_backend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/file_backend.h b/src/core/file_sys/file_backend.h
index 21864a73c..9137bbbad 100644
--- a/src/core/file_sys/file_backend.h
+++ b/src/core/file_sys/file_backend.h
@@ -21,9 +21,9 @@ public:
/**
* Open the file
- * @return true if the file opened correctly
+ * @return Result of the file operation
*/
- virtual bool Open() = 0;
+ virtual ResultCode Open() = 0;
/**
* Read data from the file