From b63853d7cec9081ceeeae9d9e05057b7c83e7e1f Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Wed, 7 Aug 2019 14:49:12 -0700 Subject: [PATCH] =?UTF-8?q?Renames=20=E2=80=9CSustain=20Buttons=E2=80=9D?= =?UTF-8?q?=20to=20=E2=80=9CHold=20Buttons=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Delta/Emulation/GameViewController.swift | 2 +- Delta/Pause Menu/PauseViewController.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Delta/Emulation/GameViewController.swift b/Delta/Emulation/GameViewController.swift index 8671419..8a5a850 100644 --- a/Delta/Emulation/GameViewController.swift +++ b/Delta/Emulation/GameViewController.swift @@ -264,7 +264,7 @@ extension GameViewController self.sustainButtonsBackgroundView = RSTPlaceholderView(frame: CGRect(x: 0, y: 0, width: vibrancyView.contentView.bounds.width, height: vibrancyView.contentView.bounds.height)) self.sustainButtonsBackgroundView.autoresizingMask = [.flexibleWidth, .flexibleHeight] - self.sustainButtonsBackgroundView.textLabel.text = NSLocalizedString("Select Buttons to Sustain", comment: "") + self.sustainButtonsBackgroundView.textLabel.text = NSLocalizedString("Select Buttons to Hold Down", comment: "") self.sustainButtonsBackgroundView.textLabel.numberOfLines = 1 self.sustainButtonsBackgroundView.textLabel.minimumScaleFactor = 0.5 self.sustainButtonsBackgroundView.textLabel.adjustsFontSizeToFitWidth = true diff --git a/Delta/Pause Menu/PauseViewController.swift b/Delta/Pause Menu/PauseViewController.swift index 03e2b77..1df72d1 100644 --- a/Delta/Pause Menu/PauseViewController.swift +++ b/Delta/Pause Menu/PauseViewController.swift @@ -162,7 +162,7 @@ private extension PauseViewController }) self.fastForwardItem = MenuItem(text: NSLocalizedString("Fast Forward", comment: ""), image: #imageLiteral(resourceName: "FastForward"), action: { _ in }) - self.sustainButtonsItem = MenuItem(text: NSLocalizedString("Sustain Buttons", comment: ""), image: #imageLiteral(resourceName: "SustainButtons"), action: { _ in }) + self.sustainButtonsItem = MenuItem(text: NSLocalizedString("Hold Buttons", comment: ""), image: #imageLiteral(resourceName: "SustainButtons"), action: { _ in }) } func updateSafeAreaInsets()