summaryrefslogtreecommitdiffhomepage
path: root/examples/core_drop_files.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2016-11-18 14:05:49 +0100
committerraysan5 <[email protected]>2016-11-18 14:05:49 +0100
commit0603e59cae0da924d7fe811b078972e04cdfe1e9 (patch)
tree55aff2d0cb67ee60018911ecf04d0b1be25dd722 /examples/core_drop_files.c
parent6b072e696d1b2b029ec1c8464ed22bf7ab65e5ee (diff)
downloadraylib-0603e59cae0da924d7fe811b078972e04cdfe1e9.tar.gz
raylib-0603e59cae0da924d7fe811b078972e04cdfe1e9.zip
Review examples and added new ones
Diffstat (limited to 'examples/core_drop_files.c')
-rw-r--r--examples/core_drop_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/core_drop_files.c b/examples/core_drop_files.c
index 5eea35f3..5c1501b8 100644
--- a/examples/core_drop_files.c
+++ b/examples/core_drop_files.c
@@ -23,7 +23,7 @@ int main()
InitWindow(screenWidth, screenHeight, "raylib [core] example - drop files");
int count = 0;
- char **droppedFiles;
+ char **droppedFiles = { 0 };
SetTargetFPS(60);
//--------------------------------------------------------------------------------------