From 81ca46dd17dafa2a474a6f8eed748d604516034d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 25 Aug 2018 05:44:51 -0400 Subject: kernel/error: Add error code for the handle table being full This replaces the lingering 3DS constant with the proper one, and utilizes it within HandleTable's Create() member function. --- src/core/hle/kernel/handle_table.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/hle/kernel/handle_table.h') diff --git a/src/core/hle/kernel/handle_table.h b/src/core/hle/kernel/handle_table.h index 22ddda630..aee3583e8 100644 --- a/src/core/hle/kernel/handle_table.h +++ b/src/core/hle/kernel/handle_table.h @@ -47,7 +47,7 @@ public: /** * Allocates a handle for the given object. * @return The created Handle or one of the following errors: - * - `ERR_OUT_OF_HANDLES`: the maximum number of handles has been exceeded. + * - `ERR_HANDLE_TABLE_FULL`: the maximum number of handles has been exceeded. */ ResultVal Create(SharedPtr obj); -- cgit v1.2.3