silence forgotten debug message

git-svn-id: https://gambatte.svn.sourceforge.net/svnroot/gambatte@166 9dfb2916-2d38-0410-aef4-c5fe6c9ffc24
This commit is contained in:
sinamas 2008-10-13 23:14:27 +00:00
parent 5bbabdcfdd
commit 0661f57297

View File

@ -19,7 +19,6 @@
#include "blitterwidget.h"
#include <adaptivesleep.h>
#include <cstdlib>
#include <iostream>
void FtEst::init(const long frameTime) {
this->frameTime = frameTime;
@ -39,7 +38,6 @@ void FtEst::update(const usec_t t) {
long oldFtAvg = ftAvg;
ftAvg = (ftAvg * 15 + ft + 8) >> 4;
ftVar = (ftVar * 15 + std::abs(ftAvg - oldFtAvg) + 8) >> 4;
std::cout << "ftAvg: " << est() << " ftVar: " << var() << std::endl;
ft = 0;
}
}