From 19039ae37d09a484ef37d0ac005884e7a0e0edd3 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 25 Aug 2013 21:33:58 +1200 Subject: [PATCH] Update source code to match. --- OpenRA.Launcher.Mac/Controller.m | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/OpenRA.Launcher.Mac/Controller.m b/OpenRA.Launcher.Mac/Controller.m index 3e2a965484..c3cb70d599 100644 --- a/OpenRA.Launcher.Mac/Controller.m +++ b/OpenRA.Launcher.Mac/Controller.m @@ -28,7 +28,7 @@ extern char **environ; defaultButton:@"Download Mono" alternateButton:@"Quit" otherButton:nil - informativeTextWithFormat:@"OpenRA requires the Mono Framework version 2.6.7 or later."]; + informativeTextWithFormat:@"OpenRA requires the Mono Framework version 2.10 or later."]; if ([alert runModal] == NSAlertDefaultReturn) [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.go-mono.com/mono-downloads/download.html"]]; @@ -153,9 +153,7 @@ extern char **environ; sscanf([ret UTF8String], "Mono JIT compiler version %d.%d.%d", &major, &minor, &point); [ret release]; - return (major > 2 || - (major == 2 && minor > 6) || - (major == 2 && minor == 6 && point >= 7)); + return (major > 2 || (major == 2 && minor >= 10)); } - (void)dealloc