From 20ed2269b48924d9367dc7e8319772caa868d7db Mon Sep 17 00:00:00 2001 From: "SND\\weimingzhi_cp" Date: Sat, 10 Apr 2010 15:00:17 +0000 Subject: git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@44528 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- gui/DebugMemory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gui/DebugMemory.c') diff --git a/gui/DebugMemory.c b/gui/DebugMemory.c index 17b69ecd..e39f4a7b 100644 --- a/gui/DebugMemory.c +++ b/gui/DebugMemory.c @@ -64,7 +64,7 @@ static void UpdateMemViewDlg() { for (i = 0; i < 16; i++) { buftext[i] = PSXMs8(start + i); sprintf(bufdata[i], "%.2X", (u8)buftext[i]); - if (buftext[i] < 32) buftext[i] = '.'; + if ((s8)buftext[i] < 32) buftext[i] = '.'; } gtk_list_store_append(store, &iter); -- cgit v1.2.3