glViewport not needed

This commit is contained in:
Flyinghead 2018-05-15 11:56:59 +02:00
parent 1cb0daff4c
commit 0ccd8ed5ca
1 changed files with 0 additions and 1 deletions

View File

@ -134,7 +134,6 @@ extern "C" int emu_single_frame(int w, int h) {
return true;
screen_width = w;
screen_height = h;
glViewport(0, 0, screen_width, screen_height);
return rend_single_frame();
}