Revert "OpenGL: Temporarily reduce OpenGL driver priorities"

This reverts commit f81c71e15b.
This commit is contained in:
Jonathan G Rennison
2021-03-16 16:04:50 +00:00
parent e3d9cce3ae
commit 297b340697
3 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ protected:
/** The factory for Windows' OpenGL video driver. */
class FVideoDriver_Win32OpenGL : public DriverFactoryBase {
public:
FVideoDriver_Win32OpenGL() : DriverFactoryBase(Driver::DT_VIDEO, 8, "win32-opengl", "Win32 OpenGL Video Driver") {}
FVideoDriver_Win32OpenGL() : DriverFactoryBase(Driver::DT_VIDEO, 10, "win32-opengl", "Win32 OpenGL Video Driver") {}
/* virtual */ Driver *CreateInstance() const override { return new VideoDriver_Win32OpenGL(); }
};