diff options
| author | Ray <[email protected]> | 2018-02-19 00:03:24 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2018-02-19 00:03:24 +0100 |
| commit | 7e32a627e88035c21cd16daddca128a9b6024de9 (patch) | |
| tree | 7f4f9935c38c212a5bfafb27266fcaf097372103 /templates | |
| parent | 0958904eac63a82b427575439de1d96a62d4f5cf (diff) | |
| download | raylib-7e32a627e88035c21cd16daddca128a9b6024de9.tar.gz raylib-7e32a627e88035c21cd16daddca128a9b6024de9.zip | |
Corrected path backslash
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/advance_game/Makefile | 2 | ||||
| -rw-r--r-- | templates/simple_game/Makefile | 2 | ||||
| -rw-r--r-- | templates/standard_game/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/advance_game/Makefile b/templates/advance_game/Makefile index 0ebeb52e..60739253 100644 --- a/templates/advance_game/Makefile +++ b/templates/advance_game/Makefile @@ -26,7 +26,7 @@ # Define required raylib variables # WARNING: To compile to HTML5, code must be redesigned to use emscripten.h and emscripten_set_main_loop() PLATFORM ?= PLATFORM_DESKTOP -RAYLIB_PATH = ..\.. +RAYLIB_PATH = ../.. PROJECT_NAME ?= advance_game # Default path for raylib on Raspberry Pi, if installed in different path, update it! diff --git a/templates/simple_game/Makefile b/templates/simple_game/Makefile index 23cd0619..2c9c3568 100644 --- a/templates/simple_game/Makefile +++ b/templates/simple_game/Makefile @@ -26,7 +26,7 @@ # Define required raylib variables # WARNING: To compile to HTML5, code must be redesigned to use emscripten.h and emscripten_set_main_loop() PLATFORM ?= PLATFORM_DESKTOP -RAYLIB_PATH ?= ..\.. +RAYLIB_PATH ?= ../.. PROJECT_NAME ?= simple_game # Default path for raylib on Raspberry Pi, if installed in different path, update it! diff --git a/templates/standard_game/Makefile b/templates/standard_game/Makefile index b3e9c82a..d596a6dc 100644 --- a/templates/standard_game/Makefile +++ b/templates/standard_game/Makefile @@ -26,7 +26,7 @@ # Define required raylib variables # WARNING: To compile to HTML5, code must be redesigned to use emscripten.h and emscripten_set_main_loop() PLATFORM ?= PLATFORM_DESKTOP -RAYLIB_PATH = ..\.. +RAYLIB_PATH = ../.. PROJECT_NAME ?= standard_game # Default path for raylib on Raspberry Pi, if installed in different path, update it! |
