Revert some unused stuff

This commit is contained in:
Gamer64
2025-06-27 09:05:45 +02:00
parent accf4cda38
commit d1e0df68ed
3 changed files with 1 additions and 4 deletions

View File

@@ -6,8 +6,7 @@ package org.yuzu.yuzu_emu.features.settings.model
import org.yuzu.yuzu_emu.utils.NativeConfig
enum class ShortSetting(override val key: String) : AbstractShortSetting {
RENDERER_SPEED_LIMIT("speed_limit"),
;
RENDERER_SPEED_LIMIT("speed_limit");
override fun getShort(needsGlobal: Boolean): Short = NativeConfig.getShort(key, needsGlobal)

View File

@@ -5,7 +5,6 @@
#include <typeinfo>
#include <vector>
#include <QComboBox>
#include <QSpinBox>
#include "common/common_types.h"
#include "common/settings.h"
#include "common/settings_enums.h"

View File

@@ -10,7 +10,6 @@
#include "yuzu/configuration/shared_translation.h"
class QComboBox;
class QSpinBox;
namespace Core {
class System;