Browse Source

removing typo in line 41 line, presssed -> pressed (#2602)

pull/2603/head
sDos280 2 years ago
committed by GitHub
parent
commit
d59ea21405
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      examples/core/core_window_should_close.c

+ 2
- 2
examples/core/core_window_should_close.c View File

@ -38,7 +38,7 @@ int main()
{ {
// Update // 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 (WindowShouldClose() || IsKeyPressed(KEY_ESCAPE)) exitWindowRequested = true;
if (exitWindowRequested) if (exitWindowRequested)
@ -74,4 +74,4 @@ int main()
//-------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------
return 0; return 0;
}
}

Loading…
Cancel
Save