mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
*Reverted fixed values of release version and redirected language files download to trunk again
*Added delete of full cover on art work uninstall and game uninstall *Added delete of CSettings object on compiling for another IOS than 249
This commit is contained in:
parent
513cca71c3
commit
2a79b36b77
@ -2,8 +2,8 @@
|
||||
<app version="1">
|
||||
<name> USB Loader GX</name>
|
||||
<coder>USB Loader GX Team</coder>
|
||||
<version>2.3 r1122</version>
|
||||
<release_date>201110211851</release_date>
|
||||
<version>2.3 r1124</version>
|
||||
<release_date>201110251948</release_date>
|
||||
<!-- // remove this line to enable arguments
|
||||
<arguments>
|
||||
<arg>--ios=250</arg>
|
||||
|
9
Makefile
9
Makefile
@ -62,9 +62,8 @@ endif
|
||||
# options for code generation
|
||||
#---------------------------------------------------------------------------------
|
||||
CFLAGS = -g -O3 -Wall -Wno-multichar -Wno-unused-parameter -Wextra $(MACHDEP) $(INCLUDE) -DBUILD_IOS=$(IOS)
|
||||
CXXFLAGS = -Xassembler -aln=$@.lst $(CFLAGS)
|
||||
CXXFLAGS = $(CFLAGS)
|
||||
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map,--section-start,.init=0x80B00000,-wrap,malloc,-wrap,free,-wrap,memalign,-wrap,calloc,-wrap,realloc,-wrap,malloc_usable_size
|
||||
-include $(PROJECTDIR)/Make.config
|
||||
|
||||
ifeq ($(BUILDMODE),channel)
|
||||
CFLAGS += -DFULLCHANNEL
|
||||
@ -149,6 +148,9 @@ export OUTPUT := $(CURDIR)/$(TARGET)
|
||||
#---------------------------------------------------------------------------------
|
||||
$(BUILD):
|
||||
@[ -d $@ ] || mkdir -p $@
|
||||
ifneq ($(IOS),249)
|
||||
@rm -f $(BUILD)/CSettings.o
|
||||
endif
|
||||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||
|
||||
channel:
|
||||
@ -167,9 +169,8 @@ theme:
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
all:
|
||||
@[ -d build ] || mkdir -p build
|
||||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile language
|
||||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile lang
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
clean:
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include "utils/ShowError.h"
|
||||
#include "gecko.h"
|
||||
|
||||
static const char * LanguageFilesURL = "http://usbloader-gui.googlecode.com/svn/tags/USBLoaderGX_v2_3/Languages/";
|
||||
static const char * LanguageFilesURL = "http://usbloader-gui.googlecode.com/svn/trunk/Languages/";
|
||||
|
||||
int DownloadAllLanguageFiles()
|
||||
{
|
||||
|
@ -232,9 +232,9 @@ void WindowCredits()
|
||||
|
||||
char SvnRev[80];
|
||||
#ifdef FULLCHANNEL
|
||||
snprintf(SvnRev, sizeof(SvnRev), "v2.3c IOS%u (Rev %u)", IOS_GetVersion(), IOS_GetRevision());
|
||||
snprintf(SvnRev, sizeof(SvnRev), "Rev%sc IOS%u (Rev %u)", GetRev(), IOS_GetVersion(), IOS_GetRevision());
|
||||
#else
|
||||
snprintf(SvnRev, sizeof(SvnRev), "v2.3 IOS%u (Rev %u)", IOS_GetVersion(), IOS_GetRevision());
|
||||
snprintf(SvnRev, sizeof(SvnRev), "Rev%s IOS%u (Rev %u)", GetRev(), IOS_GetVersion(), IOS_GetRevision());
|
||||
#endif
|
||||
|
||||
char IosInfo[80] = "";
|
||||
|
@ -118,6 +118,8 @@ int UninstallSM::GetMenuInternal()
|
||||
if (CheckFile(filepath)) remove(filepath);
|
||||
snprintf(filepath, sizeof(filepath), "%s%s.png", Settings.covers2d_path, GameID);
|
||||
if (CheckFile(filepath)) remove(filepath);
|
||||
snprintf(filepath, sizeof(filepath), "%s%s.png", Settings.coversFull_path, GameID);
|
||||
if (CheckFile(filepath)) remove(filepath);
|
||||
snprintf(filepath, sizeof(filepath), "%s%s.png", Settings.disc_path, GameID);
|
||||
if (CheckFile(filepath)) remove(filepath);
|
||||
snprintf(filepath, sizeof(filepath), "%s%s.txt", Settings.TxtCheatcodespath, GameID);
|
||||
@ -159,6 +161,8 @@ int UninstallSM::GetMenuInternal()
|
||||
if (CheckFile(filepath)) remove(filepath);
|
||||
snprintf(filepath, sizeof(filepath), "%s%s.png", Settings.covers2d_path, GameID);
|
||||
if (CheckFile(filepath)) remove(filepath);
|
||||
snprintf(filepath, sizeof(filepath), "%s%s.png", Settings.coversFull_path, GameID);
|
||||
if (CheckFile(filepath)) remove(filepath);
|
||||
}
|
||||
|
||||
//! Settings: Delete Disc Artwork
|
||||
|
Loading…
Reference in New Issue
Block a user