소스 검색

Corrected path backslash

Ray 7 년 전
부모
커밋
7e32a627e8
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      templates/advance_game/Makefile
  2. 1 1
      templates/simple_game/Makefile
  3. 1 1
      templates/standard_game/Makefile

+ 1 - 1
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!

+ 1 - 1
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!

+ 1 - 1
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!