1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Fix ios typo

This commit is contained in:
nordsoft 2022-11-09 00:03:15 +04:00
parent e83870205e
commit 43ca275afa

View File

@ -29,6 +29,6 @@ void launchGame(int argc, char * argv[]) {
__auto_type args = [NSMutableArray arrayWithCapacity:argc];
for (int i = 0; i < argc; ++i)
[arr addObject:@(argv[i])];
[args addObject:@(argv[i])];
[NSNotificationCenter.defaultCenter postNotificationName:@"StartGame" object:nil userInfo:@{@"args": args}];
}