summaryrefslogtreecommitdiffhomepage
path: root/examples/textures
diff options
context:
space:
mode:
authorRay <[email protected]>2022-09-10 10:23:38 +0200
committerRay <[email protected]>2022-09-10 10:23:38 +0200
commitcf76d234769be4773230fc1674acee837525ad40 (patch)
tree40511c067cfe31f50100f282a33bbc31d50b6f97 /examples/textures
parentcf24c021a36a483c0ad04b43edd9ba248eaa9cc0 (diff)
downloadraylib-cf76d234769be4773230fc1674acee837525ad40.tar.gz
raylib-cf76d234769be4773230fc1674acee837525ad40.zip
Minor format tweaks
Diffstat (limited to 'examples/textures')
-rw-r--r--examples/textures/textures_draw_tiled.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/textures/textures_draw_tiled.c b/examples/textures/textures_draw_tiled.c
index 517fabc2..908bf238 100644
--- a/examples/textures/textures_draw_tiled.c
+++ b/examples/textures/textures_draw_tiled.c
@@ -12,6 +12,7 @@
* Copyright (c) 2020-2022 Vlad Adrian (@demizdor) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/
+
#include "raylib.h"
#define SIZEOF(A) (sizeof(A)/sizeof(A[0]))
@@ -22,7 +23,7 @@
//------------------------------------------------------------------------------------
// Program main entry point
//------------------------------------------------------------------------------------
-int main(int argc, char **argv)
+int main(void)
{
// Initialization
//--------------------------------------------------------------------------------------