From: DeaDDooMER Date: Sat, 29 Jan 2022 17:28:11 +0000 (+0300) Subject: holmes: fix build with -dDISABLE_GFX X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=335e018a96e0da3bb62e8c220ce162e586356255 holmes: fix build with -dDISABLE_GFX --- diff --git a/src/game/g_holmes.pas b/src/game/g_holmes.pas index 948c3ff..06cc707 100644 --- a/src/game/g_holmes.pas +++ b/src/game/g_holmes.pas @@ -21,7 +21,7 @@ uses mempool, geom, e_log, e_input, g_textures, g_basic, r_graphics, g_phys, g_grid, g_player, g_monsters, - g_map, g_triggers, g_items, g_game, g_panel, g_console, g_gfx, + g_map, g_triggers, g_items, g_game, g_panel, g_console, xprofiler, sdlcarcass, fui_common, fui_events, fui_ctls, @@ -48,6 +48,9 @@ implementation uses {$INCLUDE ../nogl/noGLuses.inc} + {$IFDEF ENABLE_GFX} + g_gfx, + {$ENDIF} {$IFDEF ENABLE_GIBS} g_gibs, {$ENDIF} @@ -919,6 +922,7 @@ procedure plrDebugDraw (); end; end; +{$IFDEF ENABLE_GFX} procedure drawAwakeCells (); var x, y: Integer; @@ -935,6 +939,7 @@ procedure plrDebugDraw (); end; end; end; +{$ENDIF} procedure drawTraceBox (); var @@ -1302,7 +1307,9 @@ begin if showTriggers then drawTriggers(); if showGrid then drawSelectedPlatformCells(); - //drawAwakeCells(); + {$IFDEF ENABLE_GFX} + // drawAwakeCells(); + {$ENDIF} if showTraceBox then drawTraceBox();