Fix accidently auto-generated spaces

This commit is contained in:
cam900 2022-03-08 00:15:21 +09:00
parent b270513639
commit 65149a466f
10 changed files with 42 additions and 42 deletions

View file

@ -115,7 +115,7 @@ bool DivSample::initInternal(unsigned char d, int count) {
case 8: // 8-bit
if (data8!=NULL) delete[] data8;
length8=count;
// for padding X1-010 sample
// for padding X1-010 sample
data8=new signed char[(count+4095)&(~0xfff)];
memset(data8,0,(count+4095)&(~0xfff));
break;