mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-07 11:30:30 +02:00
Added genre type. Fixed invalid error where folders starting with _ were treated as actual collections.
This commit is contained in:
@@ -63,6 +63,16 @@ void Item::SetManufacturer(const std::string& manufacturer)
|
||||
Manufacturer = manufacturer;
|
||||
}
|
||||
|
||||
const std::string& Item::GetGenre() const
|
||||
{
|
||||
return Genre;
|
||||
}
|
||||
|
||||
void Item::SetGenre(const std::string& genre)
|
||||
{
|
||||
Genre = genre;
|
||||
}
|
||||
|
||||
const std::string& Item::GetName() const
|
||||
{
|
||||
return Name;
|
||||
|
||||
@@ -29,6 +29,8 @@ public:
|
||||
void SetLauncher(const std::string& launcher);
|
||||
const std::string& GetManufacturer() const;
|
||||
void SetManufacturer(const std::string& manufacturer);
|
||||
const std::string& GetGenre() const;
|
||||
void SetGenre(const std::string& genre);
|
||||
const std::string& GetName() const;
|
||||
void SetName(const std::string& name);
|
||||
void SetNumberButtons(std::string numberbuttons);
|
||||
@@ -56,6 +58,7 @@ private:
|
||||
std::string FullTitle;
|
||||
std::string Year;
|
||||
std::string Manufacturer;
|
||||
std::string Genre;
|
||||
std::string CloneOf;
|
||||
std::string NumberPlayers;
|
||||
std::string NumberButtons;
|
||||
|
||||
Reference in New Issue
Block a user