Allow user to change DPLII decoding quality

This commit is contained in:
LAGonauta
2019-03-18 08:22:27 -03:00
parent 5f8e189207
commit 3c9eb37381
13 changed files with 157 additions and 6 deletions

View 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