Registers SNES + GBA cores on app launch
This commit is contained in:
parent
056e8aba6e
commit
d054981eaa
@ -9,6 +9,8 @@
|
|||||||
import UIKit
|
import UIKit
|
||||||
|
|
||||||
import DeltaCore
|
import DeltaCore
|
||||||
|
import SNESDeltaCore
|
||||||
|
import GBADeltaCore
|
||||||
|
|
||||||
@UIApplicationMain
|
@UIApplicationMain
|
||||||
class AppDelegate: UIResponder, UIApplicationDelegate
|
class AppDelegate: UIResponder, UIApplicationDelegate
|
||||||
@ -17,6 +19,9 @@ class AppDelegate: UIResponder, UIApplicationDelegate
|
|||||||
|
|
||||||
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool
|
||||||
{
|
{
|
||||||
|
Delta.register(SNES.core)
|
||||||
|
Delta.register(GBA.core)
|
||||||
|
|
||||||
self.window?.tintColor = UIColor.deltaPurpleColor()
|
self.window?.tintColor = UIColor.deltaPurpleColor()
|
||||||
|
|
||||||
// Database
|
// Database
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user