reorder graphics tab, move speed to general
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
#ifndef CONFIGURE_ENHANCEMENTS_H
|
||||
#define CONFIGURE_ENHANCEMENTS_H
|
||||
// Copyright 2019 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
@@ -7,16 +10,20 @@ namespace Ui {
|
||||
class ConfigureEnhancements;
|
||||
}
|
||||
|
||||
class ConfigureEnhancements : public QWidget
|
||||
{
|
||||
class ConfigureEnhancements : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureEnhancements(QWidget *parent = nullptr);
|
||||
explicit ConfigureEnhancements(QWidget* parent = nullptr);
|
||||
~ConfigureEnhancements();
|
||||
|
||||
private:
|
||||
Ui::ConfigureEnhancements *ui;
|
||||
};
|
||||
void ApplyConfiguration();
|
||||
void RetranslateUI();
|
||||
void SetConfiguration();
|
||||
|
||||
#endif // CONFIGURE_ENHANCEMENTS_H
|
||||
private:
|
||||
void updateShaders(bool anaglyph);
|
||||
|
||||
Ui::ConfigureEnhancements* ui;
|
||||
QColor bg_color;
|
||||
};
|
||||
|
Reference in New Issue
Block a user