mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-26 06:16:24 +02:00
Merge pull request #2538 from JulianoAmaralChaves/patch-2
Update DisplayListInterpreter.cpp
This commit is contained in:
@@ -255,7 +255,7 @@ void GLES_GPU::DumpNextFrame() {
|
||||
void GLES_GPU::BeginFrame() {
|
||||
// Turn off vsync when unthrottled
|
||||
int desiredVSyncInterval = g_Config.iVSyncInterval;
|
||||
if (PSP_CoreParameter().unthrottle)
|
||||
if ((PSP_CoreParameter().unthrottle) || (PSP_CoreParameter().fpsLimit == 2) || (PSP_CoreParameter().fpsLimit == 1))
|
||||
desiredVSyncInterval = 0;
|
||||
if (desiredVSyncInterval != lastVsync_) {
|
||||
glstate.SetVSyncInterval(desiredVSyncInterval);
|
||||
|
||||
Reference in New Issue
Block a user