summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/c140.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-12-28 09:09:20 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-12-28 09:09:20 +0000
commit45d1ff4d1ef6aecb494c80d7bdf58abcdeda0445 (patch)
tree185708f2c80110b4f29191561a6dd049e0ff5809 /src/emu/sound/c140.c
parentbd24fb23c10ca9fbf63e2191dc8e58a87b83b325 (diff)
Cleaned up braces in the code so that they are properly balanced. [Atari Ace]
Diffstat (limited to 'src/emu/sound/c140.c')
-rw-r--r--src/emu/sound/c140.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/sound/c140.c b/src/emu/sound/c140.c
index 300840e7e04..7e6c592493d 100644
--- a/src/emu/sound/c140.c
+++ b/src/emu/sound/c140.c
@@ -244,10 +244,10 @@ WRITE8_DEVICE_HANDLER( c140_w )
}
else
{
- v->sample_loop = vreg->loop_msb*256 + vreg->loop_lsb;
- v->sample_start = vreg->start_msb*256 + vreg->start_lsb;
- v->sample_end = vreg->end_msb*256 + vreg->end_lsb;
- }
+ v->sample_loop = vreg->loop_msb*256 + vreg->loop_lsb;
+ v->sample_start = vreg->start_msb*256 + vreg->start_lsb;
+ v->sample_end = vreg->end_msb*256 + vreg->end_lsb;
+ }
}
else
{