GUI: add custom title format to settings dialog

This commit is contained in:
Megamouse
2020-02-14 01:08:02 +01:00
parent 23f1515448
commit ee54ba970a
15 changed files with 268 additions and 147 deletions
+17
View File
@@ -0,0 +1,17 @@
#pragma once
#include <string>
namespace rpcs3
{
struct title_format_data
{
std::string format;
std::string title;
std::string title_id;
std::string renderer;
double fps = .0;
};
std::string get_formatted_title(const title_format_data& title_data);
}