Kaynağa Gözat

Add implementation for CORE.Window.eventWaiting on PLATFORM_DESKTOP_SDL

pull/4642/head
asdqwe 7 ay önce
ebeveyn
işleme
0ffde44b78
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. +2
    -1
      src/platforms/rcore_desktop_sdl.c

+ 2
- 1
src/platforms/rcore_desktop_sdl.c Dosyayı Görüntüle

@ -1378,7 +1378,8 @@ void PollInputEvents(void)
CORE.Window.resizedLastFrame = false;
if (((CORE.Window.flags & FLAG_WINDOW_MINIMIZED) > 0) && ((CORE.Window.flags & FLAG_WINDOW_ALWAYS_RUN) == 0)) SDL_WaitEvent(NULL);
if ((CORE.Window.eventWaiting) || (((CORE.Window.flags & FLAG_WINDOW_MINIMIZED) > 0) && ((CORE.Window.flags & FLAG_WINDOW_ALWAYS_RUN) == 0))) SDL_WaitEvent(NULL);
if (CORE.Window.eventWaiting) CORE.Time.previous = GetTime();
SDL_Event event = { 0 };
while (SDL_PollEvent(&event) != 0)

Yükleniyor…
İptal
Kaydet