mirror of
https://github.com/scummvm/scummvm.git
synced 2026-05-21 05:40:43 +00:00
c82a71314c
The New 3DS requires more linear memory to launch the app than the Old 3DS does; this was causing the 3DS port to instantly crash on New 3DS models. This commit fixes that while allowing for future functionality coming soon(TM).
18 lines
404 B
Makefile
18 lines
404 B
Makefile
MODULE := backends/platform/3ds
|
|
|
|
MODULE_OBJS := \
|
|
main.o \
|
|
allocHeapsOverride.o \
|
|
shader.shbin.o \
|
|
sprite.o \
|
|
options.o \
|
|
osystem.o \
|
|
osystem-graphics.o \
|
|
osystem-audio.o \
|
|
osystem-events.o
|
|
|
|
# We don't use rules.mk but rather manually update OBJS and MODULE_DIRS.
|
|
MODULE_OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS))
|
|
OBJS := $(MODULE_OBJS) $(OBJS)
|
|
MODULE_DIRS += $(sort $(dir $(MODULE_OBJS)))
|