Polymost: fix typo causing bug where persistentStreamBuffer was being reset to the config value when it should be disabled

git-svn-id: https://svn.eduke32.com/eduke32@6669 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
pogokeen 2018-02-16 08:35:45 +00:00
parent a8370e8d0c
commit 59b01d9d67

View file

@ -531,7 +531,7 @@ void polymost_glinit()
if (persistentStreamBuffer && ((!glinfo.bufferstorage) || (!glinfo.sync))) if (persistentStreamBuffer && ((!glinfo.bufferstorage) || (!glinfo.sync)))
{ {
OSD_Printf("Your OpenGL implementation doesn't support the required extensions for persistent stream buffers. Disabling...\n"); OSD_Printf("Your OpenGL implementation doesn't support the required extensions for persistent stream buffers. Disabling...\n");
persistentStreamBuffer = 0; r_persistentStreamBuffer = 0;
} }
#endif #endif