ソースを参照

Fixed a bug in NESBank. Color Index values are now being stored in the correct location. Rendering palette colors now works correctly!

dev-bank
Bryan Miller 6年前
コミット
b7957267eb
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      app/js/models/NESBank.js

+ 3
- 1
app/js/models/NESBank.js ファイルの表示

@@ -6,7 +6,9 @@ import NESPalette from "/app/js/models/NESPalette.js";


function LRIdx2TileIdxCo(index, lid){
lid || (lid = 2);
if (isNaN(lid) || lid < 0 || lid > 2){
lid = 2;
}
var res = {
lid: 0,
index: 0,

読み込み中…
キャンセル
保存