OpenGL: Temporarily reduce OpenGL driver priorities

This commit is contained in:
Jonathan G Rennison
2021-03-02 14:10:39 +00:00
parent 84a7ab180e
commit f81c71e15b
3 changed files with 3 additions and 3 deletions

View File

@@ -49,6 +49,6 @@ private:
/** The factory for SDL' OpenGL video driver. */
class FVideoDriver_SDL_OpenGL : public DriverFactoryBase {
public:
FVideoDriver_SDL_OpenGL() : DriverFactoryBase(Driver::DT_VIDEO, 8, "sdl-opengl", "SDL OpenGL Video Driver") {}
FVideoDriver_SDL_OpenGL() : DriverFactoryBase(Driver::DT_VIDEO, 7, "sdl-opengl", "SDL OpenGL Video Driver") {}
/* virtual */ Driver *CreateInstance() const override { return new VideoDriver_SDL_OpenGL(); }
};