mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-26 07:35:40 +00:00
Do not print extra hardware message when there is none
This commit is contained in:
parent
d8aefa421d
commit
a202d8adc3
|
@ -3056,7 +3056,8 @@ bool CModel3::LoadROMSet(const struct GameInfo *GameList, const char *zipFile)
|
||||||
printf(" Developer: %s\n", Game->mfgName);
|
printf(" Developer: %s\n", Game->mfgName);
|
||||||
printf(" Year: %d\n", Game->year);
|
printf(" Year: %d\n", Game->year);
|
||||||
printf(" Step: %d.%d\n", (Game->step>>4)&0xF, Game->step&0xF);
|
printf(" Step: %d.%d\n", (Game->step>>4)&0xF, Game->step&0xF);
|
||||||
printf(" Extra Hardware: %s\n", Util::Format(", ").Join(extraHw).str().c_str());
|
if (!extraHw.empty())
|
||||||
|
printf(" Extra Hardware: %s\n", Util::Format(", ").Join(extraHw).str().c_str());
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
|
||||||
return OKAY;
|
return OKAY;
|
||||||
|
|
Loading…
Reference in a new issue