rpcsx/rpcs3/Emu/GameInfo.h
DH 62ad27d1e2 split rpcs3 and hle libraries
merge rpcs3 utilities
2025-04-08 19:46:57 +03:00

27 lines
402 B
C++

#pragma once
#include "util/types.hpp"
#include <string>
struct GameInfo
{
std::string path;
std::string icon_path;
std::string movie_path;
std::string name;
std::string serial;
std::string app_ver;
std::string version;
std::string category;
std::string fw;
u32 attr = 0;
u32 bootable = 0;
u32 parental_lvl = 0;
u32 sound_format = 0;
u32 resolution = 0;
u64 size_on_disk = umax;
};