diff options
| -rw-r--r-- | rotord/src/rotor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rotord/src/rotor.h b/rotord/src/rotor.h index 3874df6..624e0f0 100644 --- a/rotord/src/rotor.h +++ b/rotord/src/rotor.h @@ -584,11 +584,11 @@ namespace Rotor { return nullptr; } //cut mode - for (uint32_t i=0;i<image_inputs.size();i++){ - int whichinput=((int)inputs[0]->get((Time_spec)frame)+i)%image_inputs.size(); + //for (uint32_t i=0;i<image_inputs.size();i++){ + int whichinput=(((int)inputs[0]->get((Time_spec)frame)))%image_inputs.size(); //+i Image *in=image_inputs[whichinput]->get(inframe); if (in) return in; - } + //} return nullptr; } Video_cycler* clone(map<string,string> &_settings) { return new Video_cycler(_settings);}; |
