mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-28 06:53:01 +00:00
Fix texture format
This commit is contained in:
parent
8a62dfbdac
commit
90fc3f1480
1 changed files with 9 additions and 2 deletions
11
Makefile
11
Makefile
|
@ -1240,8 +1240,15 @@ $(BUILD_DIR)/%: %.png
|
||||||
$(V)$(N64GRAPHICS) -s raw -i $@ -g $< -f $(lastword $(subst ., ,$@))
|
$(V)$(N64GRAPHICS) -s raw -i $@ -g $< -f $(lastword $(subst ., ,$@))
|
||||||
|
|
||||||
$(BUILD_DIR)/%.inc.c: %.png
|
$(BUILD_DIR)/%.inc.c: %.png
|
||||||
$(call print,Converting:,$<,$@)
|
$(call print,Converting(inc.c):,$<,$@)
|
||||||
$(V)$(N64GRAPHICS) -s $(TEXTURE_ENCODING) -i $@ -g $< -f $(lastword ,$(subst ., ,$(basename $<)))
|
# If the texture filename does not identify its format (e.g. with a .i8)
|
||||||
|
# then dont pass the -f argument to n64graphics
|
||||||
|
@if echo "$(basename $<)" | grep -q "\."; then \
|
||||||
|
$(V)$(N64GRAPHICS) -i $@ -g $< -f $(lastword ,$(subst ., ,$(basename $<))) -s $(TEXTURE_ENCODING); \
|
||||||
|
else \
|
||||||
|
$(V)$(N64GRAPHICS) -i $@ -g $< -s $(TEXTURE_ENCODING); \
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Color Index CI8
|
# Color Index CI8
|
||||||
$(BUILD_DIR)/%.ci8: %.ci8.png
|
$(BUILD_DIR)/%.ci8: %.ci8.png
|
||||||
|
|
Loading…
Reference in a new issue