aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ns/errors.h
diff options
context:
space:
mode:
authorMichael Scire <SciresM@gmail.com>2019-05-23 00:55:56 -0700
committerMichael Scire <SciresM@gmail.com>2019-05-23 00:55:56 -0700
commit7dbf4c1ae5fbe6287575e7ac1b0f93dbb16843c2 (patch)
tree020e199743748138d062cd07c40f13f028c06bef /src/core/hle/service/ns/errors.h
parent195b54602f1804f1f406cd5c82aa5b01179dfebd (diff)
Implement IApplicationFunctions::GetDesiredLanguage
Diffstat (limited to 'src/core/hle/service/ns/errors.h')
-rw-r--r--src/core/hle/service/ns/errors.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/errors.h b/src/core/hle/service/ns/errors.h
new file mode 100644
index 000000000..6b85008dd
--- /dev/null
+++ b/src/core/hle/service/ns/errors.h
@@ -0,0 +1,13 @@
+// Copyright 2019 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/result.h"
+
+namespace Service::NS {
+
+constexpr ResultCode ERR_APPLICATION_LANGUAGE_NOT_FOUND{ErrorModule::NS, 300};
+
+} \ No newline at end of file