aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2017-03-07 08:45:53 +0100
committerGitHub <noreply@github.com>2017-03-07 08:45:53 +0100
commit6e683d57e8209fc524c3cc25e75eff3fb33a1fbc (patch)
treecf4ab9db7dc77f30bba3f3f2280c774fce4bdd7e /src
parentcb463a37ef1bc8c0cedd823dfeae0d53cfc57710 (diff)
parentc964559bc966292a7d70f00559ea80c224aab96d (diff)
downloadraylib-6e683d57e8209fc524c3cc25e75eff3fb33a1fbc.tar.gz
raylib-6e683d57e8209fc524c3cc25e75eff3fb33a1fbc.zip
Merge pull request #240 from victorfisac/develop
Updated Physac and examples with last changes
Diffstat (limited to 'src')
-rw-r--r--src/physac.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/physac.h b/src/physac.h
index a6b529bc..ff56615d 100644
--- a/src/physac.h
+++ b/src/physac.h
@@ -38,13 +38,20 @@
* You can define your own malloc/free implementation replacing stdlib.h malloc()/free() functions.
* Otherwise it will include stdlib.h and use the C standard library malloc()/free() function.
*
+*
+* NOTE: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
+*
+* Use the following code to compile (-static -lpthread):
+* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib_icon -static -lraylib -lpthread
+* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
+*
* VERY THANKS TO:
* Ramón Santamaria (@raysan5)
*
*
* LICENSE: zlib/libpng
*
-* Copyright (c) 2016 Victor Fisac
+* Copyright (c) 2017 Victor Fisac
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.