mirror of
https://github.com/PabloMK7/citra.git
synced 2025-10-11 03:50:04 +00:00
audio_core: use nested namespaces
This commit is contained in:
parent
f409342ab5
commit
a400e49338
13 changed files with 26 additions and 52 deletions
|
@ -7,8 +7,7 @@
|
|||
#include <algorithm>
|
||||
#include <cstddef>
|
||||
|
||||
namespace AudioCore {
|
||||
namespace HLE {
|
||||
namespace AudioCore::HLE {
|
||||
|
||||
constexpr std::size_t num_sources = 24;
|
||||
|
||||
|
@ -22,5 +21,4 @@ void FilterFrame(FrameT& frame, FilterT& filter) {
|
|||
[&filter](const auto& sample) { return filter.ProcessSample(sample); });
|
||||
}
|
||||
|
||||
} // namespace HLE
|
||||
} // namespace AudioCore
|
||||
} // namespace AudioCore::HLE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue