From 813a24225dbb12beae6a2ec1620c56c2671191a2 Mon Sep 17 00:00:00 2001 From: Siavash Eliasi Date: Fri, 21 Sep 2018 20:52:30 +0430 Subject: [PATCH] Fixed `rlgl.h` link. --- raylib-architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib-architecture.md b/raylib-architecture.md index dac6634..4a1a1ca 100644 --- a/raylib-architecture.md +++ b/raylib-architecture.md @@ -4,7 +4,7 @@ raylib is a very modular library, defined by a small number of specific and self **raylib main modules are 7:** - [`core`](https://github.com/raysan5/raylib/blob/master/src/core.c): Window / Graphic Context / Inputs management. - - [`rlgl`](https://github.com/raysan5/raylib/blob/master/src/rlgl.c): Graphic API (OpenGL) wrapper and pseudo-OpenGL 1.1 translation layer. + - [`rlgl`](https://github.com/raysan5/raylib/blob/master/src/rlgl.h): Graphic API (OpenGL) wrapper and pseudo-OpenGL 1.1 translation layer. - [`shapes`](https://github.com/raysan5/raylib/blob/master/src/shapes.c): Basic 2D shapes drawing functions. - [`textures`](https://github.com/raysan5/raylib/blob/master/src/textures.c): Textures / Image loading and management. - [`text`](https://github.com/raysan5/raylib/blob/master/src/text.c): Font data loading and text drawing.