From 9e00fde0bc981c0ea2f238711aca6a5c28a3a545 Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Wed, 23 Dec 2020 16:21:53 -0800 Subject: [PATCH] updated readme links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f005bed..5aefb06 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ this will likely see breaking changes. #### prerequisites - A C++17 compiler and CMake - - Only an SDL2 `platform` [is done](https://github.com/NoelFB/blah/blob/master/private/blah/internal/platform_sdl2.cpp). CMake will need to find SDL2 via `SDL2_INCLUDE_DIRS` and `SDL2_LIBRARIES` - - Only an OpenGL `graphics` [is done](https://github.com/NoelFB/blah/blob/master/private/blah/internal/graphics_opengl.cpp), so it currently requires OpenGL. + - Only an SDL2 `platform` [is done](https://github.com/NoelFB/blah/blob/master/private/blah/internal/platform_backend_sdl2.cpp). CMake will need to find SDL2 via `SDL2_INCLUDE_DIRS` and `SDL2_LIBRARIES` + - Only an OpenGL `graphics` [is done](https://github.com/NoelFB/blah/blob/master/private/blah/internal/graphics_backend_gl.cpp), so it currently requires OpenGL. #### notes - There are probably lots of small bugs as this is highly untested. Best used as a learning resource for now.