Missing closing quote in second string of LoadShader function, in last code example.

master
Jorge A. Gomes 6 년 전
부모
커밋
908a12366e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      raylib-generic-uber-shader-and-custom-shaders.md

+ 1
- 1
raylib-generic-uber-shader-and-custom-shaders.md

@ -103,7 +103,7 @@ User can load any custom shader using provided `Material` and `Shader`structs:
```c
Material material = { 0 }; // Empty material
material.shader = LoadShader("custom_shader.vs", "custom_shader.fs);
material.shader = LoadShader("custom_shader.vs", "custom_shader.fs");
// Setup location points in case names are not predefined ones or more locations are required
// Use: GetShaderLocation() and SetShaderValue*() functions

불러오는 중...
취소
저장