Sfoglia il codice sorgente

Fixed an emitted event name in NESPalette

dev-tmpl
Bryan Miller 6 anni fa
parent
commit
5c66e788f0
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      app/js/NESPalette.js

+ 1
- 1
app/js/NESPalette.js Vedi File

@@ -84,7 +84,7 @@ export class NESPalette extends EventCaller{
this.emit("palettes_changed", {type:"ALL", cindex:0});
} else {
this.__palette[(p*3) + (pci-1)] = sci;
this.emit("palettes_changes", {type:(p < 4) ? "TILE" : "SPRITE", pindex:p, cindex:pci});
this.emit("palettes_changed", {type:(p < 4) ? "TILE" : "SPRITE", pindex:p, cindex:pci});
}
return this;
}

Loading…
Annulla
Salva