remove useless variables
This commit is contained in:
parent
aa4344e249
commit
9432a9f382
|
@ -147,10 +147,6 @@ void EmuThread::run()
|
||||||
u32 lasttick = starttick;
|
u32 lasttick = starttick;
|
||||||
u32 lastmeasuretick = lasttick;
|
u32 lastmeasuretick = lasttick;
|
||||||
u32 fpslimitcount = 0;
|
u32 fpslimitcount = 0;
|
||||||
u64 perfcount = SDL_GetPerformanceCounter();
|
|
||||||
u64 perffreq = SDL_GetPerformanceFrequency();
|
|
||||||
float samplesleft = 0;
|
|
||||||
u32 nsamples = 0;
|
|
||||||
|
|
||||||
char melontitle[100];
|
char melontitle[100];
|
||||||
|
|
||||||
|
@ -288,7 +284,6 @@ void EmuThread::run()
|
||||||
if ((abs(wantedtickF - (float)wantedtick) < 0.001312) || (fpslimitcount > 60))
|
if ((abs(wantedtickF - (float)wantedtick) < 0.001312) || (fpslimitcount > 60))
|
||||||
{
|
{
|
||||||
fpslimitcount = 0;
|
fpslimitcount = 0;
|
||||||
nsamples = 0;
|
|
||||||
starttick = lasttick;
|
starttick = lasttick;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue