Changing hard codec max frame release for a define (in blendef.h with the other maximums).
Tried to change it everywhere, hopefully I didn't miss any. Also raised max frame to 30000 (maintainer of that code can safely modify it back since it is in one spot now ;) ) Needed that limit for a marketing video contract, might as well commit it.
This commit is contained in:
@@ -712,7 +712,7 @@ static PyObject *Lattice_insertKey( BPy_Lattice * self, PyObject * args )
|
||||
|
||||
//set the current frame
|
||||
if( frame > 0 ) {
|
||||
frame = EXPP_ClampInt( frame, 1, 18000 );
|
||||
frame = EXPP_ClampInt( frame, 1, MAXFRAME );
|
||||
oldfra = G.scene->r.cfra;
|
||||
G.scene->r.cfra = frame;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user