Fix reported loop point for GME

This commit is contained in:
James R 2023-01-12 04:34:27 -08:00
parent 4e51ad6c78
commit 398c137c1a

View file

@ -92,7 +92,7 @@ std::optional<float> Gme::loop_point_seconds() const {
if (loop_point_ms == -1)
return std::nullopt;
return loop_point_ms / 44100.f;
return loop_point_ms / 1000.f;
}
float Gme::position_seconds() const {