Let's let the user know they are Emulating a PlayStation. The ByteSize may be wrong.

This commit is contained in:
hegyak 2014-12-17 19:14:21 +00:00
parent 56d144699d
commit d8e319b250
2 changed files with 13 additions and 0 deletions

View File

@ -138,6 +138,8 @@ namespace BizHawk.Client.Common
return SystemInfo.WonderSwan;
case "Lynx":
return SystemInfo.Lynx;
case "PSX":
return SystemInfo.PSX;
}
}
}

View File

@ -296,5 +296,16 @@ namespace BizHawk.Client.Common
};
}
}
public static SystemInfo PSX
{
get
{
return new SystemInfo
{
DisplayName = "PlayStation",
ByteSize = 4,
};
}
}
}
}