소스 검색

Fixed an emitted event name in NESPalette

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

+ 1
- 1
app/js/NESPalette.js 파일 보기

@@ -84,7 +84,7 @@ export class NESPalette extends EventCaller{
this.emit("palettes_changed", {type:"ALL", cindex:0});
} else {
this.__palette[(p*3) + (pci-1)] = sci;
this.emit("palettes_changes", {type:(p < 4) ? "TILE" : "SPRITE", pindex:p, cindex:pci});
this.emit("palettes_changed", {type:(p < 4) ? "TILE" : "SPRITE", pindex:p, cindex:pci});
}
return this;
}

Loading…
취소
저장