summaryrefslogtreecommitdiffstats
path: root/src/audio_core/audio_manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hle: rename legacy errors to ResultsLiam2023-03-071-2/+2
|
* audio_manager: Forward declare result typeLioncash2022-09-211-0/+1
| | | | Moves the include into the cpp file to lessen header dependencies.
* audio_manager: Remove redundant cast in ThreadFunc()Lioncash2022-09-211-3/+5
| | | | We can just use a local here to get rid of a second cast.
* audio_manager: move std::functions in SetOutManager/SetInManagerLioncash2022-09-211-2/+2
| | | | | Prevents unnecessary reallocations in the event the captured variables are larger than the internal std::function buffer.
* audio_manager: Remove unused forward declarationsLioncash2022-09-211-2/+0
| | | | | Allows us to get rid of some unnecessary forward declarations and includes.
* audio_manager: Remove dependence on system stateLioncash2022-09-211-1/+1
| | | | This isn't used by the class, so this can be removed for the time being.
* Project AndioKelebek12022-07-221-0/+80