From 2c5cb8bd0e02f7af6e8a65e609b4b5440793f599 Mon Sep 17 00:00:00 2001 From: Sajidur Rahman Date: Fri, 15 Nov 2024 22:55:50 +0600 Subject: [PATCH] fixed typos (#8) * fixed typos fixed typing mistakes in 3 places. * fixed typos Fixed typos in words "back buffer" and "vsync". --- src/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.c b/src/main.c index da69017..bf47274 100644 --- a/src/main.c +++ b/src/main.c @@ -30,7 +30,7 @@ For a C++ project simply rename the file to .cpp and re-run the build script int main () { - // Tell the window to use vysnc and work on high DPI displays + // Tell the window to use vsync and work on high DPI displays SetConfigFlags(FLAG_VSYNC_HINT | FLAG_WINDOW_HIGHDPI); // Create the window and OpenGL context @@ -48,7 +48,7 @@ int main () // drawing BeginDrawing(); - // Setup the backbuffer for drawing (clear color and depth buffers) + // Setup the back buffer for drawing (clear color and depth buffers) ClearBackground(BLACK); // draw some text using the default font @@ -65,7 +65,7 @@ int main () // unload our texture so it can be cleaned up UnloadTexture(wabbit); - // destory the window and cleanup the OpenGL context + // destroy the window and cleanup the OpenGL context CloseWindow(); return 0; -} \ No newline at end of file +}