summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video')
-rw-r--r--src/emu/video/hd63484.c8
-rw-r--r--src/emu/video/tlc34076.c4
-rw-r--r--src/emu/video/vooddefs.h2
3 files changed, 7 insertions, 7 deletions
diff --git a/src/emu/video/hd63484.c b/src/emu/video/hd63484.c
index 0bf6e5e1a31..daba6ea0bac 100644
--- a/src/emu/video/hd63484.c
+++ b/src/emu/video/hd63484.c
@@ -688,10 +688,10 @@ static void ptn( device_t *device, int opcode, int src_x, int src_y, INT16 _ax,
ax_neg = -1;
else
ax_neg = 1;
-/* if (ay < 0)
- ay_neg = -1;
- else
- ay_neg = 1;*/
+/* if (ay < 0)
+ ay_neg = -1;
+ else
+ ay_neg = 1;*/
if (opcode & 0x0800)
switch (opcode & 0x0700)
diff --git a/src/emu/video/tlc34076.c b/src/emu/video/tlc34076.c
index 21b9a2869d5..8c1af669457 100644
--- a/src/emu/video/tlc34076.c
+++ b/src/emu/video/tlc34076.c
@@ -163,11 +163,11 @@ READ8_DEVICE_HANDLER( tlc34076_r )
WRITE8_DEVICE_HANDLER( tlc34076_w )
{
tlc34076_state *state = get_safe_token(device);
-// UINT8 oldval;
+// UINT8 oldval;
/* keep in range */
offset &= 0x0f;
-// oldval = state->regs[offset];
+// oldval = state->regs[offset];
state->regs[offset] = data;
/* switch off the offset */
diff --git a/src/emu/video/vooddefs.h b/src/emu/video/vooddefs.h
index 5ebbfeacf43..cb743d9e701 100644
--- a/src/emu/video/vooddefs.h
+++ b/src/emu/video/vooddefs.h
@@ -2079,7 +2079,7 @@ INLINE UINT32 compute_raster_hash(const raster_info *info)
const UINT8 *dither4 = NULL; \
const UINT8 *dither = NULL \
-#define DECLARE_DITHER_POINTERS_NO_DITHER_VAR \
+#define DECLARE_DITHER_POINTERS_NO_DITHER_VAR \
const UINT8 *dither_lookup = NULL; \
#define COMPUTE_DITHER_POINTERS(FBZMODE, YY) \