summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/samples.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-11-12 09:11:04 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-11-12 09:12:35 +0100
commit2131d9ad3a36ce2f8ddd536ac3267c79307a41d4 (patch)
tree5284cec215a35d7a8b580a4ef02a76a059dd0a4d /src/devices/sound/samples.cpp
parent2426d31f98f11b916c524809566c59d12b442fee (diff)
Revert "Use true/false if type used is bool (nw)"
This reverts commit dbd07cef385248937dc509135088f81329216209.
Diffstat (limited to 'src/devices/sound/samples.cpp')
-rw-r--r--src/devices/sound/samples.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/samples.cpp b/src/devices/sound/samples.cpp
index 22227fee09f..1d0c3c8c179 100644
--- a/src/devices/sound/samples.cpp
+++ b/src/devices/sound/samples.cpp
@@ -249,8 +249,8 @@ void samples_device::device_start()
chan.source = nullptr;
chan.source_num = -1;
chan.step = 0;
- chan.loop = false;
- chan.paused = false;
+ chan.loop = 0;
+ chan.paused = 0;
// register with the save state system
save_item(NAME(chan.source_length), channel);