wrote simple mod to exclude user defined parameters from ever being re-initialized to a constant per frame

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@409 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
w1z7ard
2007-09-06 01:22:49 +00:00
parent 7e3581fd4a
commit defdd2d0e5
3 changed files with 4 additions and 3 deletions

View File

@ -60,6 +60,9 @@ void InitCond::evaluate() {
assert(this);
assert(param);
if (param->flags & P_FLAG_USERDEF)
return;
/* Set matrix flag to zero. This ensures
its constant value will be used rather than a matrix value
*/