mirror of
https://github.com/libretro/gambatte-libretro.git
synced 2025-02-06 08:36:07 +00:00
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:
parent
5bbabdcfdd
commit
0661f57297
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user