Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed issue with bin generation in IMG2SP_CONVERT_BIN #123

Open
wants to merge 3 commits into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions cpctelera/cfg/modules/img2sp.mk
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ endef
# $(5): C-identifier for the array containing generated palette (if required)
# $(6): C-identifier for the array containing generated tileset (ignored: no tileset produced on binary output)
#
# Updates IMGCFILES, IMGASMFILES and OBJS2CLEAN adding new C files that result from the pack generation.
# Updates IMGBINFILES and OBJS2CLEAN adding new C files that result from the pack generation.
#
define IMG2SP_CONVERT_BIN
# Set up C and H files and paths
Expand Down Expand Up @@ -276,7 +276,6 @@ define IMG2SP_CONVERT_BIN

# Variables that need to be updated to ensure they are erased on clean
IMGBINFILES := $(I2S_B2) $(IMGBINFILES)
IMGASMFILES := $(I2S_S2) $(IMGASMFILES)
OBJS2CLEAN := $(I2S_CSB) $(OBJS2CLEAN)
endef

Expand Down