aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorvictorfisac <victorfisac@gmail.com>2018-03-10 19:30:25 +0100
committervictorfisac <victorfisac@gmail.com>2018-03-10 19:30:25 +0100
commitd6fee9da299492f17b0275eaf02c834a5bb5a15f (patch)
tree41ffc94d17077ef4e0b713da3a9e167232c59830 /src
parent3201bad65a8584c2fa587ff4e0df2c0c310d66c3 (diff)
downloadraylib-d6fee9da299492f17b0275eaf02c834a5bb5a15f.tar.gz
raylib-d6fee9da299492f17b0275eaf02c834a5bb5a15f.zip
Fixed compilation code comment in header
Diffstat (limited to 'src')
-rw-r--r--src/physac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/physac.h b/src/physac.h
index 80d403b9..7fa62545 100644
--- a/src/physac.h
+++ b/src/physac.h
@@ -43,7 +43,7 @@
* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
*
* Use the following code to compile:
-* gcc -o $(NAME_PART).exe $(FILE_NAME) -s icon\physac_icon -static -lraylib -lpthread -lopengl32 -lgdi32 -std=c99
+* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib_icon -static -lraylib -lpthread -lopengl32 -lgdi32 -std=c99
*
* VERY THANKS TO:
* Ramon Santamaria (github: @raysan5)