From 357805840142661af58416e8480b3dcab86b7a07 Mon Sep 17 00:00:00 2001 From: Gameefan <46563496+Gameefan@users.noreply.github.com> Date: Fri, 29 Jan 2021 09:18:34 +0100 Subject: [PATCH] Fixed a typo where "use" was misspelled as "yse" --- Create-Visual-Studio-2019-Project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Create-Visual-Studio-2019-Project.md b/Create-Visual-Studio-2019-Project.md index e0da888..a0df460 100644 --- a/Create-Visual-Studio-2019-Project.md +++ b/Create-Visual-Studio-2019-Project.md @@ -14,7 +14,7 @@ * Go to **C/C++ > Preprocessor** and include the following **Preprocessor Definitions** (for Windows platform): - ` GRAPHICS_API_OPENGL_33` - ` PLATFORM_DESKTOP` -* Go to **C/C++ > Advanced** and set **Compile As** to **Compile as C Code (/TC)** (if you want to yse code from examples) +* Go to **C/C++ > Advanced** and set **Compile As** to **Compile as C Code (/TC)** (if you want to use code from examples) * Go to **Linker > General** and add `(your_folder_location)\raylib\projects\VS2019\bin\x64\Release.DLL` folder to **Additional Library Directories** * Go to **Linker > Input** and add `raylib.lib` to **Additional Dependencies** * Go to _"(your_folder_location)\raylib\projects\VS2019\bin\x64\Release.DLL"_ folder and copy _**raylib.dll**_ to your project folder (main ***.cpp** must be in this folder)