From ff1bcfb2faaf6bfca99ed4b2b2816ba0d24d7647 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 13 Mar 2019 10:26:33 +0100 Subject: [PATCH] Remove comment --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index c30c243d..2018b3b0 100644 --- a/src/core.c +++ b/src/core.c @@ -3439,7 +3439,7 @@ static void WindowDropCallback(GLFWwindow *window, int count, const char **paths for (int i = 0; i < count; i++) { - dropFilesPath[i] = (char *)malloc(sizeof(char)*MAX_FILEPATH_LENGTH); // Max path length using MAX_FILEPATH_LENGTH set to 256 char + dropFilesPath[i] = (char *)malloc(sizeof(char)*MAX_FILEPATH_LENGTH); strcpy(dropFilesPath[i], paths[i]); }