Fix missing "-" prefix on "-software" cmdline parm

This commit is contained in:
Jaime Passos 2019-12-17 18:04:05 -03:00
parent 53885e5ac0
commit 79daafd893
1 changed files with 1 additions and 1 deletions

View File

@ -1645,7 +1645,7 @@ void I_StartupGraphics(void)
#ifdef HWRENDER
if (M_CheckParm("-opengl"))
rendermode = render_opengl;
else if (M_CheckParm("software"))
else if (M_CheckParm("-software"))
#endif
rendermode = render_soft;