mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-24 19:27:27 +00:00
Allow user to change DPLII decoding quality
This commit is contained in:
parent
5f8e189207
commit
3c9eb37381
13 changed files with 157 additions and 6 deletions
16
Source/Core/AudioCommon/Enums.h
Normal file
16
Source/Core/AudioCommon/Enums.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
// Copyright 2019 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace AudioCommon
|
||||
{
|
||||
enum class DPL2Quality
|
||||
{
|
||||
Low = 0,
|
||||
Medium = 1,
|
||||
High = 2,
|
||||
Highest = 3
|
||||
};
|
||||
} // namespace AudioCommon
|
Loading…
Add table
Add a link
Reference in a new issue