diff --git a/src/apps/debugger/user_interface/gui/team_window/SourceView.cpp b/src/apps/debugger/user_interface/gui/team_window/SourceView.cpp index 4f6f1e8f0e..3e3a4f9b74 100644 --- a/src/apps/debugger/user_interface/gui/team_window/SourceView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/SourceView.cpp @@ -1116,11 +1116,10 @@ SourceView::TextView::Draw(BRect updateRect) ipMarker = dynamic_cast(marker); if (ipMarker != NULL) { - rgb_color ipColor = {96, 216, 216, 255 }; - if (!ipMarker->IsCurrentIP()) - ipColor = tint_color(ipColor, B_LIGHTEN_2_TINT); - - SetLowColor(ipColor); + if (ipMarker->IsCurrentIP()) + SetLowColor(96, 216, 216, 255); + else + SetLowColor(216, 216, 216, 255); } else SetLowColor(255, 255, 0, 255);