fix incorrect display device id in r_show_devices (R_GetRenderDevices_f) (#383)

fixed #381
This commit is contained in:
NightFox 2022-08-12 20:22:54 +03:00 committed by GitHub
parent bdbcddb5ea
commit 557d6c1ab6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -689,8 +689,8 @@ static void R_GetRenderDevices_f( void )
if( !device )
break;
Con_Printf( "%-3i %-4x:%-4x %-10s %s\n",
i, device->deviceID, device->vendorID,
Con_Printf( "%-3i %04x:%04x %-10s %s\n",
i, device->vendorID, device->deviceID,
R_DeviceTypeToString( device->deviceType ), device->deviceName );
}