浏览代码

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 查看文件

if (pci < 0 || pci >= 4){ if (pci < 0 || pci >= 4){
throw new RangeError("Palette color index is out of bounds."); 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)];
} }


/** /**

正在加载...
取消
保存