Advertisement
SoFoLEO33

Homeworld 2 fix video driver error message

Aug 26th, 2018
919
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Go to line 208, remove this whole paragraph:
  2.  
  3. if( GL_isVendor("nvidia") == 1) then
  4. if( GL_osNT() == 1 ) then
  5. GL_setAssumedDriverDLL("nvoglnt.dll");
  6. else
  7. GL_setAssumedDriverDLL("nvopengl.dll");
  8. end
  9. end
  10.  
  11. And replace it with:
  12.  
  13. if( GL_isVendor("nvidia") == 1) then
  14. if( GL_osNT() == 1 ) then
  15. GL_setAssumedDriverDLL("nvoglv32.dll");
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement