From 96492508b07b7c7cd3ca46eeef6e66f73a601273 Mon Sep 17 00:00:00 2001 From: ws909 <37029098+ws909@users.noreply.github.com> Date: Mon, 6 Mar 2023 13:32:58 +0100 Subject: [PATCH] Fix parameter type of setWindowTaskbarBadgeString in internal.h --- src/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.h b/src/internal.h index c37c89dc..8a08099a 100644 --- a/src/internal.h +++ b/src/internal.h @@ -708,7 +708,7 @@ struct _GLFWplatform void (*setWindowIcon)(_GLFWwindow*,int,const GLFWimage*); void (*setWindowTaskbarProgress)(_GLFWwindow*,const int,double); void (*setWindowTaskbarBadge)(_GLFWwindow*,int); - void (*setWindowTaskbarBadgeString)(_GLFWwindow*,int); + void (*setWindowTaskbarBadgeString)(_GLFWwindow*,const char* string); void (*getWindowPos)(_GLFWwindow*,int*,int*); void (*setWindowPos)(_GLFWwindow*,int,int); void (*getWindowSize)(_GLFWwindow*,int*,int*);