minor cleanup

This commit is contained in:
Will Scullin 2021-03-13 13:22:45 -08:00
parent a3c7dd136b
commit 71814744eb
No known key found for this signature in database
GPG Key ID: 26DCD1042C6638CD
2 changed files with 4 additions and 3 deletions

View File

@ -54,8 +54,8 @@ export default class LanguageCard implements Card, Restorable<LanguageCardState>
this.read2 = this.rom; this.read2 = this.rom;
} }
private debug(...args: any[]) { private debug(..._args: any[]) {
debug.apply(null, args); // debug.apply(null, args);
} }
private updateBanks() { private updateBanks() {

View File

@ -741,7 +741,8 @@ export default class MMU implements Memory, Restorable<MMUState> {
this._debug(bankStr, rwStr); this._debug(bankStr, rwStr);
this._updateBanks(); this._updateBanks();
return result; } return result;
}
/* /*
* The Big Switch * The Big Switch