Fix for [#32078] Rendering output to Frame Server is broken.

* BKE_frameserver_append() always returned 0, which caused the frameserver to crash after the first frame was requested. Patch by "alas2718"
This commit is contained in:
2012-07-11 21:42:06 +00:00
parent 4fb850c72e
commit fabc2322aa

View File

@@ -383,7 +383,7 @@ int BKE_frameserver_append(RenderData *UNUSED(rd), int UNUSED(start_frame), int
connsock = -1;
}
return 0;
return 1;
}
void BKE_frameserver_end(void)