浏览代码

Fixed typo in NESPalette.

dev-tmpl
Bryan Miller 6 年前
父节点
当前提交
edde30cdbf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      app/js/NESPalette.js

+ 1
- 1
app/js/NESPalette.js 查看文件

@@ -25,7 +25,7 @@ export class NESPalette {
if (p < 0 || p >= 8){ // Setting ALL palettes!
if (apci.length != 25)
throw new RangeError("Color array must contain 25 color values to fill all palettes.");
this.__BGColor = idx[0];
this.__BGColor = apci[0];
for (var i=0; i < 24; i++){
if (typeof(apci[i+1]) == 'number'){
this.__palette[i] = apci[i+1]

正在加载...
取消
保存