From 0110fe22d62ed642b31e0e161833debee645eb87 Mon Sep 17 00:00:00 2001 From: rogerman Date: Sat, 18 Jun 2016 01:44:15 +0000 Subject: [PATCH] Windows Port: - Oops! Missed a small typo that still caused compiling on Windows to fail. (Related to r5458.) --- desmume/src/frontend/modules/ImageOut.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/frontend/modules/ImageOut.cpp b/desmume/src/frontend/modules/ImageOut.cpp index 9359b32fb..35001f654 100644 --- a/desmume/src/frontend/modules/ImageOut.cpp +++ b/desmume/src/frontend/modules/ImageOut.cpp @@ -34,7 +34,7 @@ static u8* Convert15To24(const u16* src, int width, int height) for(int x=0;x(*src++); - *(u32 *)tmp_inc[i] = (dst & 0x00FFFFFF) | (*(u32 *)tmp_inc & 0xFF000000); + *(u32 *)tmp_inc[x] = (dst & 0x00FFFFFF) | (*(u32 *)tmp_inc & 0xFF000000); tmp_inc += 3; } }