From 9f58aac35058bd4cc74b5440e713a937d5a34cdc Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Thu, 11 Mar 2021 12:21:35 -0600 Subject: [PATCH] =?UTF-8?q?Removes=20=E2=80=9C(Beta)=E2=80=9D=20from=20DS?= =?UTF-8?q?=E2=80=99s=20short=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Delta/Systems/System.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Delta/Systems/System.swift b/Delta/Systems/System.swift index efa5961..6364541 100644 --- a/Delta/Systems/System.swift +++ b/Delta/Systems/System.swift @@ -62,7 +62,7 @@ extension System case .n64: return NSLocalizedString("N64", comment: "") case .gbc: return NSLocalizedString("GBC", comment: "") case .gba: return NSLocalizedString("GBA", comment: "") - case .ds: return NSLocalizedString("DS (Beta)", comment: "") + case .ds: return NSLocalizedString("DS", comment: "") case .genesis: return NSLocalizedString("Genesis (Beta)", comment: "") } }