aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2019-03-13 10:26:33 +0100
committerRay <raysan5@gmail.com>2019-03-13 10:26:33 +0100
commitff1bcfb2faaf6bfca99ed4b2b2816ba0d24d7647 (patch)
treef3b29a8f289a48d2b634a4469d6dd7cbf33417f5
parent5e8427a8b53dfe5b9525626da2093eba8f9c8da9 (diff)
downloadraylib-ff1bcfb2faaf6bfca99ed4b2b2816ba0d24d7647.tar.gz
raylib-ff1bcfb2faaf6bfca99ed4b2b2816ba0d24d7647.zip
Remove comment
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
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]);
}