rpcs3/rpcs3/Emu/title.h
2023-02-15 08:58:02 +01:00

19 lines
298 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);
}