diff options
| author | 2020-04-28 11:25:34 -0400 | |
|---|---|---|
| committer | 2020-04-28 11:25:34 -0400 | |
| commit | 961427037c47b5a2aa2141a5804eba9114d7cd73 (patch) | |
| tree | f52b618f1d731e31e8abc3687019bdb3c0616516 /src/core/hle/kernel/svc.cpp | |
| parent | Merge pull request #3813 from ogniK5377/err-hex-2-dec (diff) | |
| parent | kernel: Bad GetInfo ids should not be marked as stubs (diff) | |
| download | yuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.tar.gz yuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.tar.xz yuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.zip | |
Merge pull request #3814 from ogniK5377/getinfo-err
kernel: Bad GetInfo ids should not be marked as stubs
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 25b4a23b4..41ef2caf6 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -773,7 +773,7 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha | |||
| 773 | break; | 773 | break; |
| 774 | } | 774 | } |
| 775 | 775 | ||
| 776 | LOG_WARNING(Kernel_SVC, "(STUBBED) Unimplemented svcGetInfo id=0x{:016X}", info_id); | 776 | LOG_ERROR(Kernel_SVC, "Unimplemented svcGetInfo id=0x{:016X}", info_id); |
| 777 | return ERR_INVALID_ENUM_VALUE; | 777 | return ERR_INVALID_ENUM_VALUE; |
| 778 | } | 778 | } |
| 779 | 779 | ||
| @@ -866,7 +866,7 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha | |||
| 866 | } | 866 | } |
| 867 | 867 | ||
| 868 | default: | 868 | default: |
| 869 | LOG_WARNING(Kernel_SVC, "(STUBBED) Unimplemented svcGetInfo id=0x{:016X}", info_id); | 869 | LOG_ERROR(Kernel_SVC, "Unimplemented svcGetInfo id=0x{:016X}", info_id); |
| 870 | return ERR_INVALID_ENUM_VALUE; | 870 | return ERR_INVALID_ENUM_VALUE; |
| 871 | } | 871 | } |
| 872 | } | 872 | } |