Minor style tweak

This commit is contained in:
Clownacy 2020-01-23 01:36:19 +00:00
parent a65c4bc1e3
commit 4091d152ee

View file

@ -551,11 +551,11 @@ BOOL OrgData::NoteAlloc(unsigned short alloc)
if (info.tdata[i].note_p != NULL) if (info.tdata[i].note_p != NULL)
{ {
free(info.tdata[i].note_p); free(info.tdata[i].note_p);
#ifdef FIX_BUGS #ifdef FIX_BUGS
info.tdata[i].note_p = NULL; info.tdata[i].note_p = NULL;
#else #else
info.tdata[j].note_p = NULL; // Uses j instead of i info.tdata[j].note_p = NULL; // Uses j instead of i
#endif #endif
} }
} }