blob: ec979ff94187fc90ebfbae1a7ba42a40dc21ca5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2019 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
namespace AudioCommon
{
enum class DPL2Quality
{
Lowest = 0,
Low = 1,
High = 2,
Highest = 3
};
} // namespace AudioCommon
|