Skip to content

Commit a142938

Browse files
committed
Remove some unused code
1 parent 47001c7 commit a142938

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/core/psxemulator.cc

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,6 @@ void PCSX::Emulator::vsync() {
117117
g_system->update(true);
118118
m_cheats->ApplyCheats();
119119

120-
if (m_vblank_count_hideafter) {
121-
if (!(--m_vblank_count_hideafter)) {
122-
PCSX::g_emulator->m_gpu->showScreenPic(NULL);
123-
}
124-
}
125-
126120
if (m_config.RewindInterval > 0 && !(++m_rewind_counter % m_config.RewindInterval)) {
127121
// CreateRewindState();
128122
}

src/core/psxemulator.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ class Emulator {
211211

212212
// It is safe if these overflow
213213
uint32_t m_rewind_counter = 0;
214-
uint8_t m_vblank_count_hideafter = 0;
215214

216215
// Used for overclocking
217216
// Make the timing events trigger faster as we are currently assuming everything

0 commit comments

Comments
 (0)