Previous 199869 Revisions Next

r29635 Monday 14th April, 2014 at 12:36:08 UTC by Alex Jackson
This should be safe now... (nw)
[src/emu]digfx.c
[src/mess/drivers]hp9k.c

trunk/src/emu/digfx.c
r29634r29635
158158            assert(region != NULL);
159159            region_length = 8 * region->bytes();
160160            region_base = region->base();
161            // FIXME
162            region_width = 1;
163            region_endianness = ENDIANNESS_NATIVE;
161            region_width = region->width();
162            region_endianness = region->endianness();
164163         }
165164      }
166165      else
trunk/src/mess/drivers/hp9k.c
r29634r29635
336336   1,                  /* 1 bits per pixel */
337337   { 0 },                  /* no bitplanes */
338338   /* x offsets */
339   { 0, 1, 2, 3, 4, 5, 6, 7 },
339   { STEP8(0,1) },
340340   /* y offsets */
341   { 1*8, 0*8, 3*8, 2*8, 5*8, 4*8, 7*8, 6*8, 9*8, 8*8, 11*8, 10*8, 13*8, 12*8, 15*8, 14*8 },
341   { STEP16(0,8) },
342342   8*16                    /* every char takes 16 bytes */
343343};
344344

Previous 199869 Revisions Next


© 1997-2024 The MAME Team