about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-02-19 10:43:46 +0100
committerptitSeb <sebastien.chev@gmail.com>2023-02-19 10:43:46 +0100
commit93c447051cce08678bd10798ccbbca383505b0e4 (patch)
treec47ae70e5c49e6609e95b5f27c4e0d32dbedc2a9 /src
parent60b3f042a8773d9810050a961cc09bdbaa1feb98 (diff)
downloadbox64-93c447051cce08678bd10798ccbbca383505b0e4.tar.gz
box64-93c447051cce08678bd10798ccbbca383505b0e4.zip
[DYNAREC] Fix a nasty typo in custommem
Diffstat (limited to 'src')
-rw-r--r--src/custommem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/custommem.c b/src/custommem.c
index 24505759..d75f17b1 100644
--- a/src/custommem.c
+++ b/src/custommem.c
@@ -550,7 +550,7 @@ void FreeDynarecMap(uintptr_t addr)
             return;
         }
         ++i;
-        if(i=NCHUNK) {
+        if(i==NCHUNK) {
             i = 0;
             list = list->next;
         }