[Scummvm-git-logs] scummvm master -> c33873e649a2bb70904b0beddae5666265697dec

sev- noreply at scummvm.org
Tue Sep 30 16:15:51 UTC 2025


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
c33873e649 WAGE: Fix compilation when ImGui is not available


Commit: c33873e649a2bb70904b0beddae5666265697dec
    https://github.com/scummvm/scummvm/commit/c33873e649a2bb70904b0beddae5666265697dec
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-09-30T18:15:28+02:00

Commit Message:
WAGE: Fix compilation when ImGui is not available

Changed paths:
    engines/wage/module.mk


diff --git a/engines/wage/module.mk b/engines/wage/module.mk
index 3d086316dc7..b2147170500 100644
--- a/engines/wage/module.mk
+++ b/engines/wage/module.mk
@@ -3,7 +3,6 @@ MODULE := engines/wage
 MODULE_OBJS := \
 	combat.o \
 	debugger.o \
-	debugtools.o \
 	design.o \
 	entities.o \
 	gui.o \
@@ -17,6 +16,11 @@ MODULE_OBJS := \
 	wage.o \
 	world.o
 
+ifdef USE_IMGUI
+MODULE_OBJS += \
+	debugtools.o
+endif
+
 MODULE_DIRS += \
 	engines/wage
 




More information about the Scummvm-git-logs mailing list