diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-02-19 10:43:46 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-02-19 10:43:46 +0100 |
| commit | 93c447051cce08678bd10798ccbbca383505b0e4 (patch) | |
| tree | c47ae70e5c49e6609e95b5f27c4e0d32dbedc2a9 /src | |
| parent | 60b3f042a8773d9810050a961cc09bdbaa1feb98 (diff) | |
| download | box64-93c447051cce08678bd10798ccbbca383505b0e4.tar.gz box64-93c447051cce08678bd10798ccbbca383505b0e4.zip | |
[DYNAREC] Fix a nasty typo in custommem
Diffstat (limited to 'src')
| -rw-r--r-- | src/custommem.c | 2 |
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; } |