I KNEW IT

This commit is contained in:
tildearrow 2022-04-25 18:41:24 -05:00
parent b3f1935f2b
commit 663e724111
1 changed files with 1 additions and 1 deletions

View File

@ -1369,7 +1369,7 @@ void DivEngine::loadTempIns(DivInstrument* which) {
if (tempIns==NULL) { if (tempIns==NULL) {
tempIns=new DivInstrument; tempIns=new DivInstrument;
} }
memcpy(tempIns,which,sizeof(DivInstrument)); *tempIns=*which;
BUSY_END; BUSY_END;
} }