Browse Source

Update rcore.c

pull/2717/head
Ray 2 years ago
parent
commit
4b1d4b4f6b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/rcore.c

+ 2
- 2
src/rcore.c View File

@ -1934,7 +1934,7 @@ void EnableEventWaiting(void)
}
// Disable waiting for events on EndDrawing(), automatic events polling
RLAPI void DisableEventWaiting(void)
void DisableEventWaiting(void)
{
CORE.Window.eventWaiting = false;
}
@ -2435,7 +2435,7 @@ Shader LoadShader(const char *vsFileName, const char *fsFileName)
}
// Load shader from code strings and bind default locations
RLAPI Shader LoadShaderFromMemory(const char *vsCode, const char *fsCode)
Shader LoadShaderFromMemory(const char *vsCode, const char *fsCode)
{
Shader shader = { 0 };
shader.locs = (int *)RL_CALLOC(RL_MAX_SHADER_LOCATIONS, sizeof(int));

Loading…
Cancel
Save