Skip to content

Commit

Permalink
xrEngine/EngineAPI: Fixed wrong renderer selection fallback
Browse files Browse the repository at this point in the history
Thanks @Zegeri
  • Loading branch information
Xottab-DUTY committed Oct 21, 2018
1 parent 1b16b47 commit 9ea6ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrEngine/EngineAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void CEngineAPI::SelectRenderer()
#if defined(WINDOWS)
select(r4_library, rsR4, 4, rsR3);
select(r3_library, rsR3, 3, rsR2);
select(r2_library, rsR2, 2, rsR4);
select(r2_library, rsR2, 2, rsR1);
#endif

select(r1_library, rsR1, 1);
Expand Down

0 comments on commit 9ea6ddd

Please sign in to comment.