소스 검색

Fixed a small bug in NESPalette

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

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

@@ -123,7 +123,7 @@ export class NESPalette extends EventCaller{
if (pci < 0 || pci >= 4){
throw new RangeError("Palette color index is out of bounds.");
}
return NESPalette.SystemColor(this.get_palette_syscolor_index(p, pci));
return NESPalette.SystemColor[this.get_palette_syscolor_index(p, pci)];
}

/**

Loading…
취소
저장