Skip to content

Commit 89513e1

Browse files
committed
fix: add pl_set_mouse_pos stub to null platform backend
1 parent 2e973f1 commit 89513e1

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/pl_main_null.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,12 @@ pl_get_cursor_mode(plWindow* ptWindow)
314314
return PL_CURSOR_MODE_NORMAL;
315315
}
316316

317+
bool
318+
pl_set_mouse_pos(plWindow* ptWindow, plVec2 tPos)
319+
{
320+
return false; // not implemented on this platform
321+
}
322+
317323
bool
318324
pl_set_raw_mouse_input(plWindow* ptWindow, bool bValue)
319325
{

0 commit comments

Comments
 (0)