Explorar el Código

Update rcore.c

pull/2717/head
Ray hace 3 años
padre
commit
4b1d4b4f6b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/rcore.c

+ 2
- 2
src/rcore.c Ver fichero

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

Cargando…
Cancelar
Guardar