Explorar el Código

Merge commit '4264c0b67469896fced5ba8ac4c0e75acbb13ff1' into main

Sam Lantinga hace 2 años
padre
commit
e5fe522194
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/loadso/os2/SDL_sysloadso.c

+ 1 - 1
src/loadso/os2/SDL_sysloadso.c

@@ -49,7 +49,7 @@ SDL_LoadObject(const char *sofile)
     ulRC = DosLoadModule(acError, sizeof(acError), pszModName, &hModule);
     SDL_free(pszModName);
     if (ulRC != NO_ERROR) {
-        SDL_SetError("Failed loading %s (E%u)", acError, ulRC);
+        SDL_SetError("Failed loading %s: %s (E%u)", sofile, acError, ulRC);
         return NULL;
     }