diff --git a/plugins/spu2-x/src/Windows/RealtimeDebugger.cpp b/plugins/spu2-x/src/Windows/RealtimeDebugger.cpp index 8151344863..0f63431c6c 100644 --- a/plugins/spu2-x/src/Windows/RealtimeDebugger.cpp +++ b/plugins/spu2-x/src/Windows/RealtimeDebugger.cpp @@ -81,7 +81,13 @@ void UpdateDebugDialog() SetDCBrushColor(hdc, RGB(0, 0, 0)); if ((vc.ADSR.Phase > 0) && (vc.ADSR.Phase < 6)) { - SetDCBrushColor(hdc, RGB(0, 0, 128)); + SetDCBrushColor(hdc, RGB(0, 0, 128)); // light blue for playing voice + if (vc.Modulated) { + SetDCBrushColor(hdc, RGB(0, 128, 0)); // light green for playing voice with modulation enabled + } + if (vc.Noise) { + SetDCBrushColor(hdc, RGB(128, 0, 0)); // light red for playing voice with noise enabled + } } /* else