summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 81ca471)
raw | patch | inline | side by side (parent: 81ca471)
author | DeaDDooMER <deaddoomer@deadsoftware.ru> | |
Sat, 29 Jan 2022 17:28:11 +0000 (20:28 +0300) | ||
committer | DeaDDooMER <deaddoomer@deadsoftware.ru> | |
Sat, 29 Jan 2022 17:28:11 +0000 (20:28 +0300) |
src/game/g_holmes.pas | patch | blob | history |
diff --git a/src/game/g_holmes.pas b/src/game/g_holmes.pas
index 948c3ff36a7e0f3158a4a2094106b9c9a7610b59..06cc70736982c57703c3117d2412173fcf48ea0a 100644 (file)
--- a/src/game/g_holmes.pas
+++ b/src/game/g_holmes.pas
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,
uses
{$INCLUDE ../nogl/noGLuses.inc}
+ {$IFDEF ENABLE_GFX}
+ g_gfx,
+ {$ENDIF}
{$IFDEF ENABLE_GIBS}
g_gibs,
{$ENDIF}
end;
end;
+{$IFDEF ENABLE_GFX}
procedure drawAwakeCells ();
var
x, y: Integer;
end;
end;
end;
+{$ENDIF}
procedure drawTraceBox ();
var
if showTriggers then drawTriggers();
if showGrid then drawSelectedPlatformCells();
- //drawAwakeCells();
+ {$IFDEF ENABLE_GFX}
+ // drawAwakeCells();
+ {$ENDIF}
if showTraceBox then drawTraceBox();