1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-18 20:19:11 +00:00

(svn r18573) -Fix [FS#3198]: [OSX] Try to get a generic RGB colour space if getting the system colour profile failed. (tyler)

This commit is contained in:
michi_cc
2009-12-20 16:10:44 +00:00
parent b369d81566
commit 4d9097cafb

View File

@@ -167,6 +167,8 @@ static CGColorSpaceRef QZ_GetCorrectColorSpace()
if (CMGetSystemProfile(&sysProfile) == noErr) {
colorSpace = CGColorSpaceCreateWithPlatformColorSpace(sysProfile);
CMCloseProfile(sysProfile);
} else {
colorSpace = CGColorSpaceCreateDeviceRGB();
}
if (colorSpace == NULL) error("Could not get system colour space. You might need to recalibrate your monitor.");