diff --git a/Cores/DeltaCore b/Cores/DeltaCore index 67ef536..9e14654 160000 --- a/Cores/DeltaCore +++ b/Cores/DeltaCore @@ -1 +1 @@ -Subproject commit 67ef5360d0c1ac20ffc584bd908cca634183380b +Subproject commit 9e14654abbcf82ff415eb6fb2648b0be5091ca44 diff --git a/Delta/Emulation/EmulationViewController.swift b/Delta/Emulation/EmulationViewController.swift index 95d62f2..775e1db 100644 --- a/Delta/Emulation/EmulationViewController.swift +++ b/Delta/Emulation/EmulationViewController.swift @@ -9,7 +9,6 @@ import UIKit import DeltaCore -import SNESDeltaCore class EmulationViewController: UIViewController { @@ -22,7 +21,7 @@ class EmulationViewController: UIViewController { guard oldValue != game else { return } - self.emulatorCore = SNESEmulatorCore(game: game) + self.emulatorCore = EmulatorCore(game: game) } } diff --git a/DeltaTV/EmulationViewController.swift b/DeltaTV/EmulationViewController.swift index f709124..02ab91b 100644 --- a/DeltaTV/EmulationViewController.swift +++ b/DeltaTV/EmulationViewController.swift @@ -9,7 +9,6 @@ import UIKit import DeltaCore -import SNESDeltaCore class EmulationViewController: UIViewController { @@ -18,7 +17,7 @@ class EmulationViewController: UIViewController var game: Game! { didSet { - self.emulatorCore = SNESEmulatorCore(game: game) + self.emulatorCore = EmulatorCore(game: game) } } private(set) var emulatorCore: EmulatorCore!