From b3592631b0326e97aaedb0fd020d5e4988820925 Mon Sep 17 00:00:00 2001 From: Thomas Anderson <5776225+CrackedPixel@users.noreply.github.com> Date: Sun, 12 Apr 2026 03:25:59 -0500 Subject: [PATCH] update makefile for PLATFORM_MEMORY (#5750) --- src/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Makefile b/src/Makefile index 8f13b4355..247978fd4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -284,6 +284,10 @@ ifeq ($(TARGET_PLATFORM),PLATFORM_ANDROID) # By default use OpenGL ES 2.0 on Android GRAPHICS ?= GRAPHICS_API_OPENGL_ES2 endif +ifeq ($(TARGET_PLATFORM),PLATFORM_MEMORY) + # By default use OpenGL Software + GRAPHICS ?= GRAPHICS_API_OPENGL_SOFTWARE +endif # Define default C compiler and archiver to pack library: CC, AR #------------------------------------------------------------------------------------------------