vgmoose / wiiu-hbas

[Wii U] Homebrew App Store - download apps for HBL (Legacy)
GNU General Public License v3.0
78 stars 11 forks source link

Updating from ELF to RPX #25

Closed xhp-creations closed 7 years ago

xhp-creations commented 7 years ago

When updating my libretro cores from ELF to RPX builds using HBAS, the old ELF files remain, so they are listed twice in HBL. Need to delete the old ELF, or give option of doing that.

vgmoose commented 7 years ago

I guess the fix for this then could literally be:

if new downloaded type is file.rpx:
    - delete file.elf in the app folder
else if new downloaded type is file.elf:
    - delete file.rpx in the app folder
vgmoose commented 7 years ago

Fixed in f2d08f3d4 by @rw-r-r-0644