A few tweaks to the old->new camera conversion code

after chatting with Ton. I've commented out the old file
title safe conversion for now, so we can actually use it in
files worked on now. Have noted to remember to
uncomment it before the new version number bump.
This commit is contained in:
Matt Ebb
2005-10-27 19:47:01 +00:00
parent a9a545d784
commit f0c1040ab7

View File

@@ -5021,12 +5021,19 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
while(sce) {
while(cam) {
/* convert the passepartout scene flag to a camera flag */
if(sce->r.scemode & R_PASSEPARTOUT)
if(sce->r.scemode & R_PASSEPARTOUT) {
cam->flag |= CAM_SHOWPASSEPARTOUT;
/* now disable it from the scene*/
sce->r.scemode &= ~R_PASSEPARTOUT;
}
/* make sure old cameras have title safe on */
if (!(cam->flag & CAM_SHOWTITLESAFE))
/* *** to be uncommented before 2.40 release! *** */
/*
if (!(cam->flag & CAM_SHOWTITLESAFE))
cam->flag |= CAM_SHOWTITLESAFE;
*/
cam= cam->id.next;
}
sce= sce->id.next;