Let's let the user know they are Emulating a PlayStation. The ByteSize may be wrong.
This commit is contained in:
parent
56d144699d
commit
d8e319b250
|
@ -138,6 +138,8 @@ namespace BizHawk.Client.Common
|
||||||
return SystemInfo.WonderSwan;
|
return SystemInfo.WonderSwan;
|
||||||
case "Lynx":
|
case "Lynx":
|
||||||
return SystemInfo.Lynx;
|
return SystemInfo.Lynx;
|
||||||
|
case "PSX":
|
||||||
|
return SystemInfo.PSX;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -296,5 +296,16 @@ namespace BizHawk.Client.Common
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public static SystemInfo PSX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return new SystemInfo
|
||||||
|
{
|
||||||
|
DisplayName = "PlayStation",
|
||||||
|
ByteSize = 4,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue