diff --git a/src/gui/VideoDialog.cxx b/src/gui/VideoDialog.cxx index 2231ac270..1ecb87a30 100644 --- a/src/gui/VideoDialog.cxx +++ b/src/gui/VideoDialog.cxx @@ -65,9 +65,9 @@ namespace { stringstream ss; ss - << (speed >= 0 ? "x " : "/ ") << std::setw(4) << std::fixed << std::setprecision(2) - << (1 + static_cast(speed < 0 ? -speed : speed) / 100); + << (unmapSpeed(speed) * 100) + << "%"; return ss.str(); }