Fix error in animation player arguments (font_id & frame_step swapped)

Regression in [0], even though this doesn't seem to cause problems,
the arguments were obviously wrong.

[0]: 4f3e2ee857
This commit is contained in:
Campbell Barton
2023-10-21 20:34:15 +11:00
parent 0e9f472726
commit b592e5c69a

View File

@@ -760,7 +760,7 @@ static void playanim_toscreen_on_load(GHOST_WindowHandle ghost_window,
const bool *draw_flip = nullptr;
playanim_toscreen_ex(
ghost_window, display_ctx, picture, ibuf, fstep, font_id, zoom, draw_flip, indicator_factor);
ghost_window, display_ctx, picture, ibuf, font_id, fstep, zoom, draw_flip, indicator_factor);
}
static void playanim_toscreen(PlayState *ps, const PlayAnimPict *picture, ImBuf *ibuf)