diff --git a/app/components/flightlab/pfd/PfdVerticalSpeed.vue b/app/components/flightlab/pfd/PfdVerticalSpeed.vue index c4649ca..9fd7045 100644 --- a/app/components/flightlab/pfd/PfdVerticalSpeed.vue +++ b/app/components/flightlab/pfd/PfdVerticalSpeed.vue @@ -28,7 +28,7 @@ function vsToY(fpm: number): number { const sign = Math.sign(fpm) if (sign === 0) return centerY.value const frac = speedFraction(Math.abs(fpm)) - return centerY.value - sign * frac * scaleSpan.value + return centerY.value + sign * frac * scaleSpan.value } const markPositions = computed(() => {