We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47001c7 commit a142938Copy full SHA for a142938
2 files changed
src/core/psxemulator.cc
@@ -117,12 +117,6 @@ void PCSX::Emulator::vsync() {
117
g_system->update(true);
118
m_cheats->ApplyCheats();
119
120
- if (m_vblank_count_hideafter) {
121
- if (!(--m_vblank_count_hideafter)) {
122
- PCSX::g_emulator->m_gpu->showScreenPic(NULL);
123
- }
124
125
-
126
if (m_config.RewindInterval > 0 && !(++m_rewind_counter % m_config.RewindInterval)) {
127
// CreateRewindState();
128
}
src/core/psxemulator.h
@@ -211,7 +211,6 @@ class Emulator {
211
212
// It is safe if these overflow
213
uint32_t m_rewind_counter = 0;
214
- uint8_t m_vblank_count_hideafter = 0;
215
216
// Used for overclocking
217
// Make the timing events trigger faster as we are currently assuming everything
0 commit comments