(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
1 changed files with 2 additions and 0 deletions

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.");