mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-03 17:57:26 +00:00
Fix regression
This commit is contained in:
parent
36f542972c
commit
213d613534
1 changed files with 1 additions and 1 deletions
|
@ -944,7 +944,7 @@ void DivPlatformX1_010::setFlags(const DivConfig& flags) {
|
|||
stereo=flags.getBool("stereo",false);
|
||||
bool prevBanked=isBanked;
|
||||
isBanked=flags.getBool("isBanked",false);
|
||||
if (prevBanked|=isBanked) {
|
||||
if (prevBanked!=isBanked) {
|
||||
parent->renderSamples();
|
||||
}
|
||||
for (int i=0; i<16; i++) {
|
||||
|
|
Loading…
Reference in a new issue