From 8bddb98ee17a1321848305369f2ceab6bb914e7d Mon Sep 17 00:00:00 2001 From: Jonathan Commins Date: Sat, 18 Nov 2017 13:49:52 +0700 Subject: [PATCH] Fix broken relative link by making it absolute --- Compile-for-OSX.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Compile-for-OSX.md b/Compile-for-OSX.md index 424e856..105b996 100644 --- a/Compile-for-OSX.md +++ b/Compile-for-OSX.md @@ -40,7 +40,7 @@ _Steps:_ - Make sure XCode finds `raylib.h`: Go to `Build Settings > Search Paths` and add raylib header folder (`raylib-master/src`) to `Header Search Paths` - Make sure XCode finds `libraylib.a`: Go to `Build Settings > Search Paths` and add raylib library folder (`raylib-master/release/osx`) to `Library Search Paths`. -6) raylib should work correctly. To make sure, just go to [official raylib page](www.raylib.com) and check the different examples available. Just copy the code into `main.c` file and run it with Run button or ⌘R. +6) raylib should work correctly. To make sure, just go to [official raylib page](http://www.raylib.com) and check the different examples available. Just copy the code into `main.c` file and run it with Run button or ⌘R. _NOTES:_