Revert "typo in style fix"

This reverts commit 91d36d0a62.
This commit is contained in:
tildearrow 2024-08-19 02:49:14 -05:00
parent 78d7fb4da0
commit c00947071a

View file

@ -428,7 +428,7 @@ bool DivInstrumentUndoStep::makeUndoPatch(size_t processTime_, const DivInstrume
// create the patch that will make post into pre // create the patch that will make post into pre
podPatch.calcDiff((const DivInstrumentPOD*)post, (const DivInstrumentPOD*)pre, sizeof(DivInstrumentPOD)); podPatch.calcDiff((const DivInstrumentPOD*)post, (const DivInstrumentPOD*)pre, sizeof(DivInstrumentPOD));
if (pre->name!=post->name) { if (pre->name!=post->name != 0) {
nameValid=true; nameValid=true;
name=pre->name; name=pre->name;
} }