mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
Decreased the background caching invalidation delay from 50 to 25 ms.
This commit is contained in:
parent
6ff91e89ca
commit
f66bb91496
|
|
@ -402,10 +402,10 @@ bool Window::isBackgroundDimmed()
|
||||||
|
|
||||||
void Window::render()
|
void Window::render()
|
||||||
{
|
{
|
||||||
// Short 50 ms delay before invalidating the cached background which will give the various
|
// Short 25 ms delay before invalidating the cached background which will give the various
|
||||||
// components a chance to render so they don't get exclued from the new cached image.
|
// components a chance to render so they don't get exclued from the new cached image.
|
||||||
if (mInitiateCacheTimer) {
|
if (mInitiateCacheTimer) {
|
||||||
mInvalidateCacheTimer = 50;
|
mInvalidateCacheTimer = 25;
|
||||||
mInitiateCacheTimer = false;
|
mInitiateCacheTimer = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue