Skip to content

Commit 0d69353

Browse files
committed
webgl, qnx: add axSetCursor stub
1 parent c68f9ec commit 0d69353

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

qnx/qnx_system.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -656,3 +656,4 @@ axGetCwd(char *buf, size_t sz)
656656
{
657657
return getcwd(buf, sz) != NULL ? TRUE : FALSE;
658658
}
659+
void axSetCursor(int cursor_id) { (void)cursor_id; }

webgl/webgl_system.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,3 +208,4 @@ axSettingsLoad(char const *name, void *data, size_t capacity, size_t *out_size)
208208
*out_size = 0;
209209
return FALSE;
210210
}
211+
void axSetCursor(int cursor_id) { (void)cursor_id; }

0 commit comments

Comments
 (0)