diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-04-10 15:00:17 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-04-10 15:00:17 +0000 |
| commit | 20ed2269b48924d9367dc7e8319772caa868d7db (patch) | |
| tree | 149f320156739cc214fe061209dc737e9b0fa2a0 | |
| parent | 650187b6dc08af869e69c2f152cd7f25dcad1add (diff) | |
| download | pcsxr-20ed2269b48924d9367dc7e8319772caa868d7db.tar.gz | |
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@44528 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | gui/DebugMemory.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
