|
|
@ -10,7 +10,6 @@ import org.yuzu.yuzu_emu.utils.NativeConfig |
|
|
|
|
|
|
|
|
enum class ByteSetting(override val key: String) : AbstractByteSetting { |
|
|
enum class ByteSetting(override val key: String) : AbstractByteSetting { |
|
|
AUDIO_VOLUME("volume"), |
|
|
AUDIO_VOLUME("volume"), |
|
|
RENDERER_DYNA_STATE("dyna_state"), |
|
|
|
|
|
GPU_LOG_LEVEL("gpu_log_level"); |
|
|
GPU_LOG_LEVEL("gpu_log_level"); |
|
|
|
|
|
|
|
|
override fun getByte(needsGlobal: Boolean): Byte = NativeConfig.getByte(key, needsGlobal) |
|
|
override fun getByte(needsGlobal: Boolean): Byte = NativeConfig.getByte(key, needsGlobal) |
|
|
|