mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
19 lines
299 B
C++
19 lines
299 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace rpcs3
|
|
{
|
|
struct title_format_data
|
|
{
|
|
std::string format;
|
|
std::string title;
|
|
std::string title_id;
|
|
std::string renderer;
|
|
std::string vulkan_adapter;
|
|
double fps = .0;
|
|
};
|
|
|
|
std::string get_formatted_title(const title_format_data& title_data);
|
|
}
|