From: Ketmar Dark Date: Mon, 25 Sep 2017 10:49:47 +0000 (+0300) Subject: NPOT message typo X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=66f0c7a696924eb293cd76746ad952caf231bf69 NPOT message typo --- diff --git a/src/game/g_window.pas b/src/game/g_window.pas index 8a23d00..863072c 100644 --- a/src/game/g_window.pas +++ b/src/game/g_window.pas @@ -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;