From 5155995bd4027ce1ece29ecb14a4c697c287e98d Mon Sep 17 00:00:00 2001 From: mightymax Date: Sun, 14 Jan 2007 16:47:02 +0000 Subject: [PATCH] =?UTF-8?q?BitmapInfo.height=20for=20180=EF=BF=BD=20rotati?= =?UTF-8?q?on=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- desmume/src/windows/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/windows/main.c b/desmume/src/windows/main.c index 471f05a9a..d0720aec5 100644 --- a/desmume/src/windows/main.c +++ b/desmume/src/windows/main.c @@ -153,7 +153,7 @@ void GPU_rotate(BITMAPV4HEADER *bmi) for(i=0; i < 256*192*2; i++) dst[(256*192*2)-i] = src[i]; bmi->bV4Width = 256; - bmi->bV4Height = -192; + bmi->bV4Height = -2*192; break; default: memcpy(&GPU_screenrotated[0], &GPU_screen[0], sizeof(u8)*4*256*192);