diff options
| author | Tim Redfern <tim@herge.(none)> | 2013-07-05 16:35:45 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@herge.(none)> | 2013-07-05 16:35:45 +0100 |
| commit | 6710aaddb7bb260dbef3006676799867ce865209 (patch) | |
| tree | 56c7de436f540a0a8fd0bc6a3eb242b852f4a748 | |
| parent | 2de9e3f35b537f36880f493aef2bc889a2a18b92 (diff) | |
preserve previous frame on seek fail
| -rwxr-xr-x | rotord/rotor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rotord/rotor.cpp b/rotord/rotor.cpp index da711e5..884c565 100755 --- a/rotord/rotor.cpp +++ b/rotord/rotor.cpp @@ -392,7 +392,7 @@ Image* Video_loader::output(const Frame_spec &frame){ //} if (!player.fetchFrame(frame.w,frame.h,wanted)) { //seek fail - cerr<<"Rotor: frame returned false"<<endl; + cerr<<"Rotor: failed to seek frame"<<endl; if (image.w>0) return ℑ //just return the previous frame if possible else return nullptr; }; |
