소스 검색

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

dev
Bryan Miller 5 년 전
부모
커밋
58dedf6377
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      app/js/ctrls/CTRLBanksStore.js

+ 1
- 1
app/js/ctrls/CTRLBanksStore.js 파일 보기

@@ -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…
취소
저장