summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorRay <[email protected]>2022-08-01 09:57:29 +0200
committerRay <[email protected]>2022-08-01 09:57:29 +0200
commitf5968159736edb9385418ee14451758983125990 (patch)
tree0e2ed51ce4907bd29f8dc790fc2179982c4a88c2 /examples
parent7853155f992c783e70e0458b8141a79b89de5ad4 (diff)
parentf31e4ebb3dd5ce45cc9d912f1c2400f50fe0dfe1 (diff)
downloadraylib-f5968159736edb9385418ee14451758983125990.tar.gz
raylib-f5968159736edb9385418ee14451758983125990.zip
Merge branch 'master' of https://github.com/raysan5/raylib
Diffstat (limited to 'examples')
-rw-r--r--examples/core/core_window_should_close.c4
-rw-r--r--examples/textures/textures_mouse_painting.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/core/core_window_should_close.c b/examples/core/core_window_should_close.c
index 39b30fab..fa6b9b97 100644
--- a/examples/core/core_window_should_close.c
+++ b/examples/core/core_window_should_close.c
@@ -38,7 +38,7 @@ int main()
{
// Update
//----------------------------------------------------------------------------------
- // Detect if X-button or KEY_ESCAPE have been presssed to close window
+ // Detect if X-button or KEY_ESCAPE have been pressed to close window
if (WindowShouldClose() || IsKeyPressed(KEY_ESCAPE)) exitWindowRequested = true;
if (exitWindowRequested)
@@ -74,4 +74,4 @@ int main()
//--------------------------------------------------------------------------------------
return 0;
-} \ No newline at end of file
+}
diff --git a/examples/textures/textures_mouse_painting.c b/examples/textures/textures_mouse_painting.c
index 50c5c164..eb6dc480 100644
--- a/examples/textures/textures_mouse_painting.c
+++ b/examples/textures/textures_mouse_painting.c
@@ -29,7 +29,7 @@ int main(void)
InitWindow(screenWidth, screenHeight, "raylib [textures] example - mouse painting");
- // Colours to choose from
+ // Colors to choose from
Color colors[MAX_COLORS_COUNT] = {
RAYWHITE, YELLOW, GOLD, ORANGE, PINK, RED, MAROON, GREEN, LIME, DARKGREEN,
SKYBLUE, BLUE, DARKBLUE, PURPLE, VIOLET, DARKPURPLE, BEIGE, BROWN, DARKBROWN,