Print 25 GL extensions to a line instead of 100

This commit is contained in:
baldurk
2018-10-29 18:32:04 +00:00
parent cc2f596b1a
commit 0909f1b90a
+1 -1
View File
@@ -85,7 +85,7 @@ bool CheckReplayContext()
extensionString += StringFormat::Fmt("[%d]: %s, ", e, ext);
if(e > 0 && (e % 100) == 0)
if(e > 0 && (e % 25) == 0)
{
RDCLOG("%s", extensionString.c_str());
extensionString = "";