1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-24 13:37:44 +00:00

Possibly fix platform strings for ps3 & ps4

This commit is contained in:
Joshua Goins 2023-08-02 16:27:55 -04:00
parent f3e51048b2
commit f036f741a9

View file

@ -269,8 +269,8 @@ enum PlatformId {
fn get_platform_string(id: &PlatformId) -> &'static str {
match &id {
PlatformId::Windows => "win32",
PlatformId::PS3 => "ps3", // TODO: lol are these even correct? i have no idea
PlatformId::PS4 => "ps4",
PlatformId::PS3 => "ps3.d",
PlatformId::PS4 => "ps4.d",
}
}