diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 5cac8d8a0c..725cb3bb80 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -257,8 +257,9 @@ RageDisplay *CreateDisplay() { return CreateDisplay_OGL(); } static bool CardRequiresD3D() { vector Cards; - Cards.push_back(Regex(".*Voodoo.*")); -// Cards.push_back(Regex(".*nVidia.*")); // testing + Cards.push_back(Regex("Voodoo")); + Cards.push_back(Regex("3dfx")); +// Cards.push_back(Regex("nVidia")); // testing const CString desc = GetPrimaryVideoDriverName(); for(unsigned i = 0; i < Cards.size(); ++i)