mirror of
				https://git.h3cjp.net/H3cJP/citra.git
				synced 2025-11-04 09:05:08 +00:00 
			
		
		
		
	yuzu/configuration/config: Use a std::unique_ptr for qt_config instead of a raw pointer
Same behavior, less code.
This commit is contained in:
		
							parent
							
								
									f4bd5c3559
								
							
						
					
					
						commit
						bf6dd78324
					
				| 
						 | 
				
			
			@ -16,11 +16,16 @@ Config::Config() {
 | 
			
		|||
    // TODO: Don't hardcode the path; let the frontend decide where to put the config files.
 | 
			
		||||
    qt_config_loc = FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + "qt-config.ini";
 | 
			
		||||
    FileUtil::CreateFullPath(qt_config_loc);
 | 
			
		||||
    qt_config = new QSettings(QString::fromStdString(qt_config_loc), QSettings::IniFormat);
 | 
			
		||||
    qt_config =
 | 
			
		||||
        std::make_unique<QSettings>(QString::fromStdString(qt_config_loc), QSettings::IniFormat);
 | 
			
		||||
 | 
			
		||||
    Reload();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
Config::~Config() {
 | 
			
		||||
    Save();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const std::array<int, Settings::NativeButton::NumButtons> Config::default_buttons = {
 | 
			
		||||
    Qt::Key_A, Qt::Key_S, Qt::Key_Z, Qt::Key_X, Qt::Key_T, Qt::Key_G, Qt::Key_F, Qt::Key_H,
 | 
			
		||||
    Qt::Key_Q, Qt::Key_W, Qt::Key_M, Qt::Key_N, Qt::Key_1, Qt::Key_2, Qt::Key_B,
 | 
			
		||||
| 
						 | 
				
			
			@ -561,9 +566,3 @@ void Config::Reload() {
 | 
			
		|||
void Config::Save() {
 | 
			
		||||
    SaveValues();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
Config::~Config() {
 | 
			
		||||
    Save();
 | 
			
		||||
 | 
			
		||||
    delete qt_config;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -5,6 +5,7 @@
 | 
			
		|||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include <array>
 | 
			
		||||
#include <memory>
 | 
			
		||||
#include <string>
 | 
			
		||||
#include <QVariant>
 | 
			
		||||
#include "core/settings.h"
 | 
			
		||||
| 
						 | 
				
			
			@ -30,6 +31,6 @@ private:
 | 
			
		|||
    void WriteSetting(const QString& name, const QVariant& value);
 | 
			
		||||
    void WriteSetting(const QString& name, const QVariant& value, const QVariant& default_value);
 | 
			
		||||
 | 
			
		||||
    QSettings* qt_config;
 | 
			
		||||
    std::unique_ptr<QSettings> qt_config;
 | 
			
		||||
    std::string qt_config_loc;
 | 
			
		||||
};
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue