DEADSOFTWARE

NPOT message typo
authorKetmar Dark <ketmar@ketmar.no-ip.org>
Mon, 25 Sep 2017 10:49:47 +0000 (13:49 +0300)
committerKetmar Dark <ketmar@ketmar.no-ip.org>
Mon, 25 Sep 2017 10:50:11 +0000 (13:50 +0300)
src/game/g_window.pas

index 8a23d00c53283fdd5bc98233fcf1a5630e6de042..863072ce1188bf94fb59aed443671c630bae44a2 100644 (file)
@@ -838,12 +838,12 @@ begin
 
   if not glHasExtension('GL_ARB_texture_non_power_of_two') then
   begin
-    e_WriteLog('Driver DID''T advertised NPOT textures support', TMsgType.Warning);
+    e_WriteLog('NPOT textures: NO', TMsgType.Warning);
     glLegacyNPOT := true;
   end
   else
   begin
-    e_WriteLog('Driver advertised NPOT textures support', TMsgType.Notify);
+    e_WriteLog('NPOT textures: YES', TMsgType.Notify);
     glLegacyNPOT := false;
   end;
   gwin_dump_extensions := false;