mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Allow user to change DPLII decoding quality
This commit is contained in:
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
|
Reference in New Issue
Block a user