Remove trailing spaces

This commit is contained in:
Ray 2021-10-06 01:20:46 +02:00
parent 9a4fb25285
commit 8d7f97ee04
6 changed files with 9 additions and 9 deletions

View file

@ -3917,7 +3917,7 @@ static bool InitGraphicsDevice(int width, int height)
if ((-1 == CORE.Window.fd) || (drmModeGetResources(CORE.Window.fd) == NULL))
{
TRACELOG(LOG_INFO, "DISPLAY: Failed to open platform-gpu-card, trying card1");
CORE.Window.fd = open("/dev/dri/card1", O_RDWR); // Other Embedded
CORE.Window.fd = open("/dev/dri/card1", O_RDWR); // Other Embedded
}
if ((-1 == CORE.Window.fd) || (drmModeGetResources(CORE.Window.fd) == NULL))
{