Fix drm hang up on exit and mouse input issues (#3484)

This commit is contained in:
ubkp 2023-10-29 16:55:02 -03:00 committed by GitHub
parent 09075d515a
commit 049a6d475d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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