mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-12 22:59:04 +00:00
QT save fixes II (#3119)
* added recentFiles save/load * gui language * fixups for language * fixed language issue with savedata (it was saving based on gui language and not on console language) * clang fix * elf dirs added * added theme
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
|
||||
#include "common/types.h"
|
||||
#include "core/file_format/trp.h"
|
||||
#include "gui_settings.h"
|
||||
|
||||
struct TrophyGameInfo {
|
||||
QString name;
|
||||
@@ -34,7 +35,8 @@ class TrophyViewer : public QMainWindow {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit TrophyViewer(
|
||||
QString trophyPath, QString gameTrpPath, QString gameName = "",
|
||||
std::shared_ptr<gui_settings> gui_settings, QString trophyPath, QString gameTrpPath,
|
||||
QString gameName = "",
|
||||
const QVector<TrophyGameInfo>& allTrophyGames = QVector<TrophyGameInfo>());
|
||||
|
||||
void updateTrophyInfo();
|
||||
@@ -77,4 +79,5 @@ private:
|
||||
}
|
||||
return "Unknown";
|
||||
}
|
||||
std::shared_ptr<gui_settings> m_gui_settings;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user