12 May
2025
12 May
'25
2:40 p.m.
Alfred Agrell (@Alcaro) commented about dlls/win32u/sysparams.c:
+ /* Nvidia */ + case 0x10de: + strcpy( buffer, "32.0.15.6094" ); + break; + /* Default value for any other vendor. */ + default: + strcpy( buffer, "31.0.10.1000" ); + break; + } + + return buffer; +} + +static char* driver_vendor_to_name( UINT16 vendor, char *buffer ) +{ + /* The last seven digits are the driver number. */ Same question. And I'm not entirely sure what a driver number is (version? index?), but whatever it is, it's not present in this function.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8010#note_103022