removing typo in line 41 line, presssed -> pressed

This commit is contained in:
sDos280 2022-07-30 23:28:41 +03:00 committed by GitHub
parent 93b633b6e6
commit 0229931c24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}
}