Disabled some debugging left-over from the recent commits.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34128 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2009-11-19 10:04:33 +00:00
parent aaf92d5ce3
commit 98df5c0e73
-2
View File
@@ -667,13 +667,11 @@ Controller::SetPosition(float value)
void
Controller::SetFramePosition(int32 value)
{
printf("Controller::SetFramePosition(%ld)\n", value);
BAutolock _(this);
int32 seekFrame = max_c(0, min_c(Duration(), value));
int32 currentFrame = CurrentFrame();
if (seekFrame != currentFrame) {
printf(" adjusted seek frame\n");
fSeekFrame = seekFrame;
fSeekRequested = true;
SetCurrentFrame(seekFrame);