The F3 key 'save rendered image' made inconsistant choices to save either
in jpg or tga, when the output panel was indicating to render to movies.
Even worse, it was sometimes saying 'save jpg' and saved a targa!

Made it consistantly save .jpg now, since tga isn't a good common format.

2)
Forgot to commit transform.h for previous bugfix in transform numeric input
This commit is contained in:
2006-07-08 13:18:57 +00:00
parent 8a34cbe41f
commit 00b55aba24
3 changed files with 9 additions and 8 deletions

View File

@@ -200,17 +200,18 @@ void save_image_filesel_str(char *str)
case R_HAMX:
strcpy(str, "Save HAMX");
break;
case R_TARGA:
strcpy(str, "Save Targa");
break;
/* default we save jpeg, also for all movie formats */
case R_JPEG90:
case R_MOVIE:
case R_AVICODEC:
case R_AVIRAW:
case R_AVIJPEG:
strcpy(str, "Save JPEG");
break;
case R_TARGA: /* default targa */
default:
strcpy(str, "Save Targa");
strcpy(str, "Save JPEG");
break;
}
}