mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-09 08:22:28 +00:00
Fix reported loop point for GME
This commit is contained in:
parent
4e51ad6c78
commit
398c137c1a
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue