Skip to content

Commit e26fabe

Browse files
committed
fortune1.cpp: missing a CR to get the brackets aligned...
1 parent 9d3140d commit e26fabe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mame/igt/fortune1.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,8 @@ uint8_t babypkr_state::baby_sound_p1_r()
12041204
m_hp_2 = (~m_p24_data >> 5) & 1;
12051205
m_bell = (m_p1 >> 4) & 1;
12061206
m_aux3 = (m_p1 >> 3) & 1;
1207-
return m_c_io | (m_hp_1 << 1) | (m_hp_2 << 2) | 0xf8;}
1207+
return m_c_io | (m_hp_1 << 1) | (m_hp_2 << 2) | 0xf8;
1208+
}
12081209

12091210
void babypkr_state::baby_sound_p3_w(uint8_t data)
12101211
{

0 commit comments

Comments
 (0)