Remove VideoContext::nextFrame as it's unused

Originally committed to SVN as r5966.
This commit is contained in:
Thomas Goyne 2011-12-06 00:17:25 +00:00
parent c26e61f209
commit 59fdab5fe7
2 changed files with 0 additions and 5 deletions

View File

@ -74,7 +74,6 @@ VideoContext::VideoContext()
: playback(this)
, startMS(0)
, endFrame(0)
, nextFrame(-1)
, frame_n(0)
, arValue(1.)
, arType(0)
@ -118,7 +117,6 @@ void VideoContext::Reset() {
// Remove video data
Stop();
frame_n = 0;
nextFrame = -1;
// Clean up video data
videoName.clear();

View File

@ -104,9 +104,6 @@ class VideoContext : public wxEvtHandler {
/// DOCME
int endFrame;
/// DOCME
int nextFrame;
/// DOCME
int frame_n;