summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2011-12-04 18:50:00 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2011-12-04 18:50:00 +0000
commitba2d56dc725216e02517cd0bafa1f42c1da838ac (patch)
treea0eee6725797685ed603c4cb09af2b4bada4fa18
parent2592b58d583dea3d8a8c0e933ad15ccbba0c70c0 (diff)
Clean-ups and version bumpmame0144u2
-rw-r--r--src/emu/diexec.c12
-rw-r--r--src/emu/diexec.h4
-rw-r--r--src/emu/schedule.c2
-rw-r--r--src/emu/schedule.h4
-rw-r--r--src/emu/softlist.c34
-rw-r--r--src/emu/video/ramdac.c8
-rw-r--r--src/emu/video/ramdac.h2
-rw-r--r--src/mame/drivers/calchase.c4
-rw-r--r--src/mame/drivers/cesclass.c6
-rw-r--r--src/mame/drivers/gng.c2
-rw-r--r--src/mame/drivers/pacman.c4
-rw-r--r--src/mame/drivers/polepos.c2
-rw-r--r--src/mame/drivers/qdrmfgp.c4
-rw-r--r--src/mame/drivers/saturn.c10
-rw-r--r--src/mame/etc/template_driver.c8
-rw-r--r--src/mame/includes/bombjack.h2
-rw-r--r--src/mame/machine/md_cart.c4
-rw-r--r--src/mame/video/beezer.c2
-rw-r--r--src/mame/video/segas32.c2
-rw-r--r--src/version.c2
20 files changed, 59 insertions, 59 deletions
diff --git a/src/emu/diexec.c b/src/emu/diexec.c
index 483a330f701..ec905110803 100644
--- a/src/emu/diexec.c
+++ b/src/emu/diexec.c
@@ -73,7 +73,7 @@ const int TRIGGER_SUSPENDTIME = -4000;
device_execute_interface::device_execute_interface(const machine_config &mconfig, device_t &device)
: device_interface(device),
-// m_cothread(cothread_entry_delegate(FUNC(device_execute_interface::run_thread_wrapper), this)),
+// m_cothread(cothread_entry_delegate(FUNC(device_execute_interface::run_thread_wrapper), this)),
m_disabled(false),
m_vblank_interrupt(NULL),
m_vblank_interrupts_per_frame(0),
@@ -380,12 +380,12 @@ UINT64 device_execute_interface::total_cycles() const
/*
void device_execute_interface::run_thread_wrapper()
{
- // loop infinitely
- device_scheduler &scheduler = device().machine().scheduler();
- while (1)
+ // loop infinitely
+ device_scheduler &scheduler = device().machine().scheduler();
+ while (1)
{
- // call the classic run function, then swap back to the scheduler's thread
- execute_run();
+ // call the classic run function, then swap back to the scheduler's thread
+ execute_run();
scheduler.make_active();
}
}
diff --git a/src/emu/diexec.h b/src/emu/diexec.h
index 488f70cc1a1..5bc1a29f770 100644
--- a/src/emu/diexec.h
+++ b/src/emu/diexec.h
@@ -205,7 +205,7 @@ public:
// required operation overrides
//#if USE_COTHREADS
-// void run() { m_cothread.make_active(); }
+// void run() { m_cothread.make_active(); }
//#else
void run() { execute_run(); }
//#endif
@@ -272,7 +272,7 @@ protected:
};
// internal state
-// cothread m_cothread; // thread used for execution
+// cothread m_cothread; // thread used for execution
// configuration
bool m_disabled; // disabled from executing?
diff --git a/src/emu/schedule.c b/src/emu/schedule.c
index 1a3dfa2e445..614ed8bdacb 100644
--- a/src/emu/schedule.c
+++ b/src/emu/schedule.c
@@ -341,7 +341,7 @@ device_scheduler::device_scheduler(running_machine &machine) :
m_executing_device(NULL),
m_execute_list(NULL),
m_basetime(attotime::zero),
-// m_cothread(co_active()),
+// m_cothread(co_active()),
m_timer_list(NULL),
m_timer_allocator(machine.respool()),
m_callback_timer(NULL),
diff --git a/src/emu/schedule.h b/src/emu/schedule.h
index cad78513066..6ef60ce0f9c 100644
--- a/src/emu/schedule.h
+++ b/src/emu/schedule.h
@@ -165,7 +165,7 @@ public:
void abort_timeslice();
void trigger(int trigid, attotime after = attotime::zero);
void boost_interleave(attotime timeslice_time, attotime boost_duration);
-// void make_active() { m_cothread.make_active(); }
+// void make_active() { m_cothread.make_active(); }
// timers, specified by callback/name
emu_timer *timer_alloc(timer_expired_delegate callback, void *ptr = NULL);
@@ -210,7 +210,7 @@ private:
device_execute_interface * m_executing_device; // pointer to currently executing device
device_execute_interface * m_execute_list; // list of devices to be executed
attotime m_basetime; // global basetime; everything moves forward from here
-// cothread m_cothread; // core scheduler thread
+// cothread m_cothread; // core scheduler thread
// list of active timers
emu_timer * m_timer_list; // head of the active list
diff --git a/src/emu/softlist.c b/src/emu/softlist.c
index bd987347059..bd7a593b9f6 100644
--- a/src/emu/softlist.c
+++ b/src/emu/softlist.c
@@ -385,7 +385,7 @@ static void start_handler(void *data, const char *tagname, const char **attribut
else if ( !strcmp( attributes[0], "supported" ) )
{
supported = attributes[1];
- }
+ }
else
unknown_attribute(swlist, attributes[0]);
}
@@ -538,9 +538,9 @@ static void start_handler(void *data, const char *tagname, const char **attribut
else if ( !strcmp( attributes[0], "interface" ) )
str_interface = attributes[1];
-
- else
- unknown_attribute(swlist, attributes[0]);
+
+ else
+ unknown_attribute(swlist, attributes[0]);
}
if ( str_name && str_interface )
@@ -593,9 +593,9 @@ static void start_handler(void *data, const char *tagname, const char **attribut
else if ( !strcmp( attributes[0], "size") )
str_size = attributes[1];
-
- else
- unknown_attribute(swlist, attributes[0]);
+
+ else
+ unknown_attribute(swlist, attributes[0]);
}
if ( str_name && str_size )
{
@@ -629,7 +629,7 @@ static void start_handler(void *data, const char *tagname, const char **attribut
if ( !strcmp( attributes[0], "name" ) )
str_name = attributes[1];
else
- unknown_attribute(swlist, attributes[0]);
+ unknown_attribute(swlist, attributes[0]);
}
if ( str_name )
{
@@ -665,9 +665,9 @@ static void start_handler(void *data, const char *tagname, const char **attribut
else if ( !strcmp( attributes[0], "value" ) )
str_feature_value = attributes[1];
-
+
else
- unknown_attribute(swlist, attributes[0]);
+ unknown_attribute(swlist, attributes[0]);
}
/* Prepare for adding feature to feature list */
@@ -733,9 +733,9 @@ static void start_handler(void *data, const char *tagname, const char **attribut
else if ( !strcmp( attributes[0], "status" ) )
str_status = attributes[1];
else if ( !strcmp( attributes[0], "loadflag" ) )
- str_loadflag = attributes[1];
+ str_loadflag = attributes[1];
else
- unknown_attribute(swlist, attributes[0]);
+ unknown_attribute(swlist, attributes[0]);
}
if ( swlist->softinfo )
{
@@ -822,7 +822,7 @@ static void start_handler(void *data, const char *tagname, const char **attribut
parse_error(&swlist->state, "%s: Incomplete rom definition (line %lu)\n",
swlist->file->filename(),XML_GetCurrentLineNumber(swlist->state.parser));
}
- }
+ }
}
else
if (!strcmp(tagname, "disk"))
@@ -843,7 +843,7 @@ static void start_handler(void *data, const char *tagname, const char **attribut
else if ( !strcmp( attributes[0], "writeable" ) )
str_writeable = attributes[1];
else
- unknown_attribute(swlist, attributes[0]);
+ unknown_attribute(swlist, attributes[0]);
}
if ( swlist->softinfo )
{
@@ -870,7 +870,7 @@ static void start_handler(void *data, const char *tagname, const char **attribut
}
else if (!strcmp(tagname, "dipvalue"))
{
- }
+ }
else
unknown_tag(swlist, tagname);
break;
@@ -1811,7 +1811,7 @@ void validate_softlists(emu_options &options)
{
lists[list_count++] = swlist->list_name[i];
software_list_parse( list, &validate_error_proc, NULL );
-
+
for (software_info *swinfo = software_list_find(list, "*", NULL); swinfo != NULL; swinfo = software_list_find(list, "*", swinfo))
{
const char *s;
@@ -1948,7 +1948,7 @@ void validate_softlists(emu_options &options)
}
}
software_list_close(list);
- }
+ }
}
}
}
diff --git a/src/emu/video/ramdac.c b/src/emu/video/ramdac.c
index c9ef304f180..e773bf0d75f 100644
--- a/src/emu/video/ramdac.c
+++ b/src/emu/video/ramdac.c
@@ -1,11 +1,11 @@
/***************************************************************************
- Generic Palette RAMDAC device
+ Generic Palette RAMDAC device
- Written by Angelo Salese
+ Written by Angelo Salese
- TODO:
- - masking register
+ TODO:
+ - masking register
***************************************************************************/
diff --git a/src/emu/video/ramdac.h b/src/emu/video/ramdac.h
index 782daa0a0a9..0e53de36b4a 100644
--- a/src/emu/video/ramdac.h
+++ b/src/emu/video/ramdac.h
@@ -1,6 +1,6 @@
/***************************************************************************
- Generic Palette RAMDAC device
+ Generic Palette RAMDAC device
***************************************************************************/
diff --git a/src/mame/drivers/calchase.c b/src/mame/drivers/calchase.c
index ed84c0afd8b..4bda86dd75a 100644
--- a/src/mame/drivers/calchase.c
+++ b/src/mame/drivers/calchase.c
@@ -469,8 +469,8 @@ static ADDRESS_MAP_START( calchase_io, AS_IO, 32)
AM_RANGE(0x03f0, 0x03ff) AM_DEVREADWRITE("ide", fdc_r, fdc_w)
AM_RANGE(0x0a78, 0x0a7b) AM_WRITENOP//AM_WRITE(pnp_data_w)
AM_RANGE(0x0cf8, 0x0cff) AM_DEVREADWRITE("pcibus", pci_32le_r, pci_32le_w)
-// AM_RANGE(0x43c0, 0x43cf) AM_RAM AM_SHARE("share1")
-// AM_RANGE(0x83c0, 0x83cf) AM_RAM AM_SHARE("share1")
+// AM_RANGE(0x43c0, 0x43cf) AM_RAM AM_SHARE("share1")
+// AM_RANGE(0x83c0, 0x83cf) AM_RAM AM_SHARE("share1")
ADDRESS_MAP_END
diff --git a/src/mame/drivers/cesclass.c b/src/mame/drivers/cesclass.c
index 27d0105080e..8f9e440d6cb 100644
--- a/src/mame/drivers/cesclass.c
+++ b/src/mame/drivers/cesclass.c
@@ -116,11 +116,11 @@ static ADDRESS_MAP_START( cesclassic_map, AS_PROGRAM, 16, cesclassic_state )
AM_RANGE(0x000000, 0x0fffff) AM_ROM
AM_RANGE(0x400000, 0x40ffff) AM_RAM
AM_RANGE(0x600000, 0x600001) AM_READ(_600000_r)
-// AM_RANGE(0x640040, 0x640041) AM_WRITENOP
+// AM_RANGE(0x640040, 0x640041) AM_WRITENOP
AM_RANGE(0x670000, 0x670001) AM_READ(_670000_r)
AM_RANGE(0x900100, 0x900101) AM_WRITENOP
-// AM_RANGE(0x900100, 0x900101) AM_DEVREADWRITE8("oki", okim6295_device, read, write,0x00ff)
-// AM_RANGE(0x904000, 0x904001) AM_WRITENOP
+// AM_RANGE(0x900100, 0x900101) AM_DEVREADWRITE8("oki", okim6295_device, read, write,0x00ff)
+// AM_RANGE(0x904000, 0x904001) AM_WRITENOP
ADDRESS_MAP_END
static INPUT_PORTS_START( cesclassic )
diff --git a/src/mame/drivers/gng.c b/src/mame/drivers/gng.c
index 645420a19df..71c9052acf7 100644
--- a/src/mame/drivers/gng.c
+++ b/src/mame/drivers/gng.c
@@ -325,7 +325,7 @@ static MACHINE_RESET( gng )
int i;
/* TODO: PCB reference clearly shows that the POST has random/filled data on the paletteram.
- For now let's fill everything with white colors until we have better info about it */
+ For now let's fill everything with white colors until we have better info about it */
for(i=0;i<0x100;i+=4)
{
machine.generic.paletteram.u8[i] = machine.generic.paletteram2.u8[i] = 0x00;
diff --git a/src/mame/drivers/pacman.c b/src/mame/drivers/pacman.c
index 99bb5e344b5..78defad20b0 100644
--- a/src/mame/drivers/pacman.c
+++ b/src/mame/drivers/pacman.c
@@ -917,8 +917,8 @@ static ADDRESS_MAP_START( birdiy_map, AS_PROGRAM, 8 )
// AM_RANGE(0x4800, 0x4bff) AM_MIRROR(0xa000) AM_READ(pacman_read_nop) AM_WRITENOP
AM_RANGE(0x4c00, 0x4fef) AM_MIRROR(0xa000) AM_RAM
AM_RANGE(0x4ff0, 0x4fff) AM_MIRROR(0xa000) AM_RAM AM_BASE_SIZE_GENERIC(spriteram)
- AM_RANGE(0x5001, 0x5001) AM_MIRROR(0xaf38) AM_WRITE(irq_mask_w)
-// AM_RANGE(0x5001, 0x5001) AM_MIRROR(0xaf38) AM_DEVWRITE("namco", pacman_sound_enable_w)
+ AM_RANGE(0x5001, 0x5001) AM_MIRROR(0xaf38) AM_WRITE(irq_mask_w)
+// AM_RANGE(0x5001, 0x5001) AM_MIRROR(0xaf38) AM_DEVWRITE("namco", pacman_sound_enable_w)
// AM_RANGE(0x5002, 0x5002) AM_MIRROR(0xaf38) AM_WRITENOP
AM_RANGE(0x5003, 0x5003) AM_MIRROR(0xaf38) AM_WRITE(pacman_flipscreen_w)
// AM_RANGE(0x5004, 0x5005) AM_MIRROR(0xaf38) AM_WRITENOP // AM_WRITE(pacman_leds_w)
diff --git a/src/mame/drivers/polepos.c b/src/mame/drivers/polepos.c
index f6611b1a726..1bad4726dbf 100644
--- a/src/mame/drivers/polepos.c
+++ b/src/mame/drivers/polepos.c
@@ -300,7 +300,7 @@ static WRITE8_HANDLER( polepos_latch_w )
break;
case 0x01: /* IOSEL */
-// polepos_mcu_enable_w(offset,data);
+// polepos_mcu_enable_w(offset,data);
break;
case 0x02: /* CLSON */
diff --git a/src/mame/drivers/qdrmfgp.c b/src/mame/drivers/qdrmfgp.c
index 3d4aa6904d2..3b35138b68d 100644
--- a/src/mame/drivers/qdrmfgp.c
+++ b/src/mame/drivers/qdrmfgp.c
@@ -616,12 +616,12 @@ static const k056832_interface qdrmfgp2_k056832_intf =
static WRITE_LINE_DEVICE_HANDLER( qdrmfgp_irq3_ack_w )
{
-// cputag_set_input_line(device->machine(), "maincpu", M68K_IRQ_3, CLEAR_LINE);
+// cputag_set_input_line(device->machine(), "maincpu", M68K_IRQ_3, CLEAR_LINE);
}
static WRITE_LINE_DEVICE_HANDLER( qdrmfgp_irq4_ack_w )
{
-// cputag_set_input_line(device->machine(), "maincpu", M68K_IRQ_4, CLEAR_LINE);
+// cputag_set_input_line(device->machine(), "maincpu", M68K_IRQ_4, CLEAR_LINE);
}
static const k053252_interface qdrmfgp_k053252_intf =
diff --git a/src/mame/drivers/saturn.c b/src/mame/drivers/saturn.c
index 2b680bdb9e9..bc34c2b67f7 100644
--- a/src/mame/drivers/saturn.c
+++ b/src/mame/drivers/saturn.c
@@ -2463,7 +2463,7 @@ ROM_START(saturnjp)
ROMX_LOAD("sega1003.bin", 0x00000000, 0x00080000, CRC(b3c63c25) SHA1(7b23b53d62de0f29a23e423d0fe751dfb469c2fa), ROM_BIOS(2))
ROM_SYSTEM_BIOS(2, "100", "Japan v1.00 (940921)")
ROMX_LOAD("sega_100.bin", 0x00000000, 0x00080000, CRC(2aba43c2) SHA1(2b8cb4f87580683eb4d760e4ed210813d667f0a2), ROM_BIOS(3))
-// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
+// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
ROM_REGION( 0x080000, "slave", 0 ) /* SH2 code */
ROM_COPY( "maincpu",0,0,0x080000)
ROM_END
@@ -2476,7 +2476,7 @@ ROM_START(saturn)
ROMX_LOAD("mpr-17933.bin", 0x00000000, 0x00080000, CRC(4afcf0fa) SHA1(faa8ea183a6d7bbe5d4e03bb1332519800d3fbc3), ROM_BIOS(1))
ROM_SYSTEM_BIOS(1, "100a", "Overseas v1.00a (941115)")
ROMX_LOAD("sega_100a.bin", 0x00000000, 0x00080000, CRC(f90f0089) SHA1(3bb41feb82838ab9a35601ac666de5aacfd17a58), ROM_BIOS(2))
-// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
+// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
ROM_REGION( 0x080000, "slave", 0 ) /* SH2 code */
ROM_COPY( "maincpu",0,0,0x080000)
ROM_END
@@ -2488,7 +2488,7 @@ ROM_START(saturneu)
ROMX_LOAD("mpr-17933.bin", 0x00000000, 0x00080000, CRC(4afcf0fa) SHA1(faa8ea183a6d7bbe5d4e03bb1332519800d3fbc3), ROM_BIOS(1))
ROM_SYSTEM_BIOS(1, "100a", "Overseas v1.00a (941115)")
ROMX_LOAD("sega_100a.bin", 0x00000000, 0x00080000, CRC(f90f0089) SHA1(3bb41feb82838ab9a35601ac666de5aacfd17a58), ROM_BIOS(2))
-// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
+// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
ROM_REGION( 0x080000, "slave", 0 ) /* SH2 code */
ROM_COPY( "maincpu",0,0,0x080000)
ROM_END
@@ -2496,7 +2496,7 @@ ROM_END
ROM_START(vsaturn)
ROM_REGION( 0x480000, "maincpu", ROMREGION_ERASEFF ) /* SH2 code */
ROM_LOAD("vsaturn.bin", 0x00000000, 0x00080000, CRC(e4d61811) SHA1(4154e11959f3d5639b11d7902b3a393a99fb5776))
-// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
+// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
ROM_REGION( 0x080000, "slave", 0 ) /* SH2 code */
ROM_COPY( "maincpu",0,0,0x080000)
ROM_END
@@ -2504,7 +2504,7 @@ ROM_END
ROM_START(hisaturn)
ROM_REGION( 0x480000, "maincpu", ROMREGION_ERASEFF ) /* SH2 code */
ROM_LOAD("hisaturn.bin", 0x00000000, 0x00080000, CRC(721e1b60) SHA1(49d8493008fa715ca0c94d99817a5439d6f2c796))
-// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
+// ROM_CART_LOAD("cart", 0x080000, 0x400000, ROM_NOMIRROR | ROM_OPTIONAL)
ROM_REGION( 0x080000, "slave", 0 ) /* SH2 code */
ROM_COPY( "maincpu",0,0,0x080000)
ROM_END
diff --git a/src/mame/etc/template_driver.c b/src/mame/etc/template_driver.c
index 9363bc10fe2..7f9c4237bcb 100644
--- a/src/mame/etc/template_driver.c
+++ b/src/mame/etc/template_driver.c
@@ -32,7 +32,7 @@ static ADDRESS_MAP_START( xxx_map, AS_PROGRAM, 8 )
ADDRESS_MAP_END
static ADDRESS_MAP_START( xxx_io, AS_IO, 8 )
-// ADDRESS_MAP_GLOBAL_MASK(0xff)
+// ADDRESS_MAP_GLOBAL_MASK(0xff)
ADDRESS_MAP_END
static INPUT_PORTS_START( xxx )
@@ -55,7 +55,7 @@ GFXDECODE_END
static MACHINE_START( xxx )
{
-// xxx_state *state = machine.driver_data<xxx_state>();
+// xxx_state *state = machine.driver_data<xxx_state>();
}
@@ -96,8 +96,8 @@ static MACHINE_CONFIG_START( xxx, xxx_state )
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
-// MCFG_SOUND_ADD("aysnd", AY8910, MAIN_CLOCK/4)
-// MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)
+// MCFG_SOUND_ADD("aysnd", AY8910, MAIN_CLOCK/4)
+// MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)
MACHINE_CONFIG_END
diff --git a/src/mame/includes/bombjack.h b/src/mame/includes/bombjack.h
index 40fc1565d1f..7e4bbe692ff 100644
--- a/src/mame/includes/bombjack.h
+++ b/src/mame/includes/bombjack.h
@@ -14,7 +14,7 @@ public:
UINT8 * m_videoram;
UINT8 * m_colorram;
UINT8 * m_spriteram;
-// UINT8 * m_paletteram; // currently this uses generic palette handling
+// UINT8 * m_paletteram; // currently this uses generic palette handling
size_t m_spriteram_size;
/* video-related */
diff --git a/src/mame/machine/md_cart.c b/src/mame/machine/md_cart.c
index 1deeb97a5a2..74f09cd284c 100644
--- a/src/mame/machine/md_cart.c
+++ b/src/mame/machine/md_cart.c
@@ -1558,7 +1558,7 @@ static int megadrive_load_nonlist(device_image_interface &image)
/* is this a SMD file? */
if (genesis_is_SMD(&rawROM[0x2200], (unsigned)length))
{
-// printf("SMD!\n");
+// printf("SMD!\n");
tmpROMnew = ROM;
tmpROM = ROM + 0x2000 + 512;
@@ -1590,7 +1590,7 @@ static int megadrive_load_nonlist(device_image_interface &image)
else if ((rawROM[0x2080] == 'E') && (rawROM[0x2081] == 'A') &&
(rawROM[0x2082] == 'M' || rawROM[0x2082] == 'G'))
{
-// printf("MD!\n");
+// printf("MD!\n");
tmpROMnew = global_alloc_array(unsigned char, length);
secondhalf = &tmpROMnew[length >> 1];
diff --git a/src/mame/video/beezer.c b/src/mame/video/beezer.c
index f709ce2d22c..b30fcf3ffc0 100644
--- a/src/mame/video/beezer.c
+++ b/src/mame/video/beezer.c
@@ -7,7 +7,7 @@
TIMER_DEVICE_CALLBACK( beezer_interrupt )
{
int scanline = param;
-// beezer_state *state = timer.machine().driver_data<beezer_state>();
+// beezer_state *state = timer.machine().driver_data<beezer_state>();
via6522_device *via_0 = timer.machine().device<via6522_device>("via6522_0");
via_0->write_ca2((scanline & 0x20) ? 1 : 0);
diff --git a/src/mame/video/segas32.c b/src/mame/video/segas32.c
index 9e3d2eb9514..fc855cbf34d 100644
--- a/src/mame/video/segas32.c
+++ b/src/mame/video/segas32.c
@@ -1882,7 +1882,7 @@ static void sprite_render_list(running_machine &machine)
g_profiler.start(PROFILER_USER2);
-// logerror("----\n");
+// logerror("----\n");
/* compute the outer clip */
outerclip.min_x = outerclip.min_y = 0;
diff --git a/src/version.c b/src/version.c
index 1bb47688d9f..4e2591f7ff9 100644
--- a/src/version.c
+++ b/src/version.c
@@ -38,4 +38,4 @@
***************************************************************************/
extern const char build_version[];
-const char build_version[] = "0.144u1 ("__DATE__")";
+const char build_version[] = "0.144u2 ("__DATE__")";