From f036f741a99867145d8cae45a556539cc786d9b4 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 2 Aug 2023 16:27:55 -0400 Subject: [PATCH] Possibly fix platform strings for ps3 & ps4 --- src/patch.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/patch.rs b/src/patch.rs index 8469979..82e4e4d 100755 --- a/src/patch.rs +++ b/src/patch.rs @@ -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", } }