Browse Source

Merge branch 'master' of https://github.com/raysan5/raylib

pull/3486/head
Ray 1 year ago
parent
commit
ec91b44fb6
1 changed files with 6 additions and 5 deletions
  1. +6
    -5
      src/platforms/rcore_drm.c

+ 6
- 5
src/platforms/rcore_drm.c View File

@ -906,6 +906,12 @@ int InitPlatform(void)
rlLoadExtensions(eglGetProcAddress);
//----------------------------------------------------------------------------
// Initialize timming system
//----------------------------------------------------------------------------
// NOTE: timming system must be initialized before the input events system
InitTimer();
//----------------------------------------------------------------------------
// Initialize input events system
//----------------------------------------------------------------------------
InitEvdevInput(); // Evdev inputs initialization
@ -913,11 +919,6 @@ int InitPlatform(void)
InitKeyboard(); // Keyboard init (stdin)
//----------------------------------------------------------------------------
// Initialize timming system
//----------------------------------------------------------------------------
InitTimer();
//----------------------------------------------------------------------------
// Initialize storage system
//----------------------------------------------------------------------------
CORE.Storage.basePath = GetWorkingDirectory();

Loading…
Cancel
Save