quick commit for forgotten file in the G.sce -> G.main->name refactoring.

Patch by Jens Verwiebe, many thanks.
This commit is contained in:
Andrea Weikert 2010-10-18 17:55:11 +00:00
parent 77867dfab1
commit bf09c851a9

@ -41,6 +41,7 @@
#include "AUD_C-API.h"
#include "BKE_global.h"
#include "BKE_main.h"
#include "BKE_scene.h"
#include "BKE_report.h"
@ -208,7 +209,7 @@ void makeqtstring (RenderData *rd, char *string) {
char txt[64];
strcpy(string, rd->pic);
BLI_path_abs(string, G.sce);
BLI_path_abs(string, G.main->name);
BLI_make_existing_file(string);
@ -222,7 +223,7 @@ void filepath_qt(char *string, RenderData *rd) {
if (string==NULL) return;
strcpy(string, rd->pic);
BLI_path_abs(string, G.sce);
BLI_path_abs(string, G.main->name);
BLI_make_existing_file(string);