hle: rename legacy errors to Results

This commit is contained in:
Liam 2023-03-06 19:04:12 -05:00
parent 0c4bb90be2
commit ea36f70e02
35 changed files with 169 additions and 183 deletions

View file

@ -28,7 +28,7 @@ SystemManager& Manager::GetSystemManager() {
Result Manager::GetWorkBufferSize(const AudioRendererParameterInternal& params,
u64& out_count) const {
if (!CheckValidRevision(params.revision)) {
return Service::Audio::ERR_INVALID_REVISION;
return Service::Audio::ResultInvalidRevision;
}
out_count = System::GetWorkBufferSize(params);