mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 19:55:46 +00:00
hle: rename legacy errors to Results
This commit is contained in:
parent
0c4bb90be2
commit
ea36f70e02
35 changed files with 169 additions and 183 deletions
|
@ -19,7 +19,7 @@ Manager::Manager(Core::System& system_) : system{system_} {
|
|||
Result Manager::AcquireSessionId(size_t& session_id) {
|
||||
if (num_free_sessions == 0) {
|
||||
LOG_ERROR(Service_Audio, "All 12 Audio Out sessions are in use, cannot create any more");
|
||||
return Service::Audio::ERR_MAXIMUM_SESSIONS_REACHED;
|
||||
return Service::Audio::ResultOutOfSessions;
|
||||
}
|
||||
session_id = session_ids[next_session_id];
|
||||
next_session_id = (next_session_id + 1) % MaxOutSessions;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue