Parcourir la source

Fixed a bug in NESNameTable where attribute table was being loaded incorrectly.

dev
Bryan Miller il y a 5 ans
Parent
révision
90bcc6fa99
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. +4
    -4
      app/js/models/NESNameTable.js

+ 4
- 4
app/js/models/NESNameTable.js Voir le fichier

@@ -17,10 +17,10 @@ function CompileAttribs(attrib){

function DecompileAttribs(v){
return [
v & 0x00000011,
(v & 0x00001100) >> 2,
(v & 0x00110000) >> 4,
(v & 0x11000000) >> 6
v & 0b00000011,
(v & 0b00001100) >> 2,
(v & 0b00110000) >> 4,
(v & 0b11000000) >> 6
];
}


Chargement…
Annuler
Enregistrer