Browse Source

CTRLBanksStore.obj property will now return the full bank data instead of just the segment currently selected.

dev
Bryan Miller 5 years ago
parent
commit
58dedf6377
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/js/ctrls/CTRLBanksStore.js

+ 1
- 1
app/js/ctrls/CTRLBanksStore.js View File

@@ -152,7 +152,7 @@ class CTRLBanksStore{
var data = [];
Object.keys(Banks).forEach((key) => {
if (Banks.hasOwnProperty(key)){
data.push({name:key, data:Banks[key].bank.base64});
data.push({name:key, data:Banks[key].bank.getBase64(NESBank.ACCESSMODE_8K, 0)});
}
});
return data;

Loading…
Cancel
Save