From f76d500f4aa649672c18347edb076cc94403daf6 Mon Sep 17 00:00:00 2001 From: Vincent-FK Date: Fri, 22 Nov 2019 00:54:45 +0100 Subject: [PATCH] back rotation 270 Signed-off-by: Vincent-FK --- RetroFE/Source/SDL.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RetroFE/Source/SDL.cpp b/RetroFE/Source/SDL.cpp index 336eeac..8dc83df 100644 --- a/RetroFE/Source/SDL.cpp +++ b/RetroFE/Source/SDL.cpp @@ -356,8 +356,8 @@ void SDL::SDL_Rotate_270(SDL_Surface * src, SDL_Surface * dst){ // Copy virtual window to HW window and Flip display void SDL::renderAndFlipWindow( ) { - SDL_BlitSurface(window_virtual_, NULL, window_, NULL); - //SDL_Rotate_270(window_virtual_, window_); + //SDL_BlitSurface(window_virtual_, NULL, window_, NULL); + SDL_Rotate_270(window_virtual_, window_); SDL_Flip(window_); }