diff options
| author | 2019-11-12 05:38:12 -0500 | |
|---|---|---|
| committer | 2019-11-12 07:55:39 -0500 | |
| commit | f11b87ebf1cd5770f9128e62931183b0c9331067 (patch) | |
| tree | 286bed12845e8843e88d2a317388d115b69d2d95 /src/core/hle/service/aoc | |
| parent | perf_stats: Resolve implicit int to double conversion error (diff) | |
| download | yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.tar.gz yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.tar.xz yuzu-f11b87ebf1cd5770f9128e62931183b0c9331067.zip | |
service: Resolve sign conversion errors
These are fairly trivial to resolve and most of the changes entail
using RESULT_UNKNOWN over ResultCode(-1).
Diffstat (limited to 'src/core/hle/service/aoc')
| -rw-r--r-- | src/core/hle/service/aoc/aoc_u.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp index f36ccbc49..30076a53e 100644 --- a/src/core/hle/service/aoc/aoc_u.cpp +++ b/src/core/hle/service/aoc/aoc_u.cpp | |||
| @@ -131,7 +131,7 @@ void AOC_U::ListAddOnContent(Kernel::HLERequestContext& ctx) { | |||
| 131 | if (out.size() < offset) { | 131 | if (out.size() < offset) { |
| 132 | IPC::ResponseBuilder rb{ctx, 2}; | 132 | IPC::ResponseBuilder rb{ctx, 2}; |
| 133 | // TODO(DarkLordZach): Find the correct error code. | 133 | // TODO(DarkLordZach): Find the correct error code. |
| 134 | rb.Push(ResultCode(-1)); | 134 | rb.Push(RESULT_UNKNOWN); |
| 135 | return; | 135 | return; |
| 136 | } | 136 | } |
| 137 | 137 | ||