summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index d4bc460269..eb3f4ab55d 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -781,9 +781,9 @@ unique_random_color (list<Gdk::Color>& used_colors)
const int32_t max_saturation = 48000; // 65535 would open up the whole color wheel
- newcolor.set_red (random() % max_saturation);
- newcolor.set_blue (random() % max_saturation);
- newcolor.set_green (random() % max_saturation);
+ newcolor.set_red (g_random_int() % max_saturation);
+ newcolor.set_blue (g_random_int() % max_saturation);
+ newcolor.set_green (g_random_int() % max_saturation);
if (used_colors.size() == 0) {
used_colors.push_back (newcolor);