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

@ -31,9 +31,9 @@ class DivX1_010Interface: public vgsound_emu_mem_intf {
DivEngine* parent;
int sampleBank;
virtual u8 read_byte(u32 address) override {
if (parent->x1_010Mem==NULL) return 0;
return parent->x1_010Mem[address & 0xfffff];
}
if (parent->x1_010Mem==NULL) return 0;
return parent->x1_010Mem[address & 0xfffff];
}
DivX1_010Interface(): parent(NULL), sampleBank(0) {}
};