mirror of
https://github.com/hax4dazy/TinWoo.git
synced 2025-02-09 19:25:05 +01:00
fix for sparse games
This commit is contained in:
parent
7271369d70
commit
d6e94b604d
8
Makefile
8
Makefile
@ -44,7 +44,7 @@ DATA := data
|
||||
INCLUDES := include include/ui include/data include/install include/nx include/nx/ipc include/util include/Plutonium/Plutonium/Output-switch/include
|
||||
APP_TITLE := TinWoo Installer
|
||||
APP_AUTHOR := MrDude
|
||||
APP_VERSION := 1.0.3
|
||||
APP_VERSION := 1.0.4
|
||||
ROMFS := romfs
|
||||
APP_ICON := icon.jpg
|
||||
|
||||
@ -165,17 +165,17 @@ all: $(BUILD)
|
||||
|
||||
$(BUILD):
|
||||
@[ -d $@ ] || mkdir -p $@
|
||||
# $(MAKE) --no-print-directory -C include/Plutonium -f Makefile lib
|
||||
$(MAKE) --no-print-directory -C include/Plutonium -f Makefile lib
|
||||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
clean:
|
||||
@echo clean ...
|
||||
ifeq ($(strip $(APP_JSON)),)
|
||||
# @$(MAKE) --no-print-directory -C include/Plutonium/Plutonium -f Makefile clean
|
||||
@$(MAKE) --no-print-directory -C include/Plutonium/Plutonium -f Makefile clean
|
||||
@rm -fr $(BUILD) $(TARGET).nro $(TARGET).nacp $(TARGET).elf
|
||||
else
|
||||
# @$(MAKE) --no-print-directory -C include/Plutonium/Plutonium -f Makefile clean
|
||||
@$(MAKE) --no-print-directory -C include/Plutonium/Plutonium -f Makefile clean
|
||||
@rm -fr $(BUILD) $(TARGET).nsp $(TARGET).nso $(TARGET).npdm $(TARGET).elf
|
||||
endif
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
namespace inst::config {
|
||||
static const std::string appDir = "sdmc:/switch/tinwoo";
|
||||
static const std::string configPath = appDir + "/config.json";
|
||||
static const std::string appVersion = "1.0.3";
|
||||
static const std::string appVersion = "1.0.4";
|
||||
|
||||
extern std::string gAuthKey;
|
||||
extern std::string sigPatchesUrl;
|
||||
|
@ -94,6 +94,7 @@ namespace nx::ncm
|
||||
contentMetaHeader.extended_header_size = packagedContentMetaHeader.extended_header_size;
|
||||
contentMetaHeader.content_count = contentInfos.size() + 1; // Add one for the cnmt content record
|
||||
contentMetaHeader.content_meta_count = packagedContentMetaHeader.content_meta_count;
|
||||
contentMetaHeader.attributes = packagedContentMetaHeader.attributes;
|
||||
|
||||
installContentMetaBuffer.Append<NcmContentMetaHeader>(contentMetaHeader);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user