Explorar el Código

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

dev
Bryan Miller hace 5 años
padre
commit
90bcc6fa99
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. +4
    -4
      app/js/models/NESNameTable.js

+ 4
- 4
app/js/models/NESNameTable.js Ver fichero

@@ -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
];
}


Cargando…
Cancelar
Guardar