Skip to content

Commit 5f23e85

Browse files
committed
(D3D8) Widgets and gfx_display fully implemented
1 parent 71aede9 commit 5f23e85

4 files changed

Lines changed: 983 additions & 28 deletions

File tree

configuration.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3576,7 +3576,8 @@ static bool check_menu_driver_compatibility(settings_t *settings)
35763576
switch (video_driver[0])
35773577
{
35783578
case 'd':
3579-
return (memcmp(video_driver, "d3d9_hlsl", 9) == 0 && video_driver[9] == '\0')
3579+
return (memcmp(video_driver, "d3d8", 4) == 0 && video_driver[4] == '\0')
3580+
|| (memcmp(video_driver, "d3d9_hlsl", 9) == 0 && video_driver[9] == '\0')
35803581
|| (memcmp(video_driver, "d3d9_cg", 7) == 0 && video_driver[7] == '\0')
35813582
|| (memcmp(video_driver, "d3d10", 5) == 0 && video_driver[5] == '\0')
35823583
|| (memcmp(video_driver, "d3d11", 5) == 0 && video_driver[5] == '\0')

0 commit comments

Comments
 (0)