瀏覽代碼

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…
取消
儲存