1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00

Fix iOS app entry for raw keyboard input (#4780)

Fix iOS app entry for raw keyboard input
This commit is contained in:
Dean Herbert 2019-05-14 08:59:35 +09:00 committed by GitHub
commit 94b9504145
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ namespace osu.iOS
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, "AppDelegate");
UIApplication.Main(args, "GameUIApplication", "AppDelegate");
}
}
}