fbo_unbind should not be necessary when pausing anymore.

This commit is contained in:
Henrik Rydgard 2013-07-08 01:01:47 +02:00
parent 3281aa5bb6
commit bab30279c2

View file

@ -201,7 +201,6 @@ void EmuScreen::onVKeyDown(int virtualKeyCode) {
}
break;
case VIRTKEY_PAUSE:
fbo_unbind();
screenManager()->push(new PauseScreen());
break;
}
@ -359,7 +358,6 @@ void EmuScreen::update(InputState &input) {
// This is still here to support the iOS on screen back button.
if (input.pad_buttons_down & (PAD_BUTTON_BACK)) {
fbo_unbind();
screenManager()->push(new PauseScreen());
}
}