Merge pull request #5771 from meepingsnesroms/master
Add 3ds assets, move assets from ctr to pkg/ctr
28
Makefile.ctr
@ -14,16 +14,16 @@ APP_DESCRIPTION = Retroarch 3DS
|
||||
APP_AUTHOR = Team Libretro
|
||||
APP_PRODUCT_CODE = RETROARCH-3DS
|
||||
APP_UNIQUE_ID = 0xBAC00
|
||||
APP_ICON = ctr/assets/default.png
|
||||
APP_BANNER = ctr/assets/libretro_banner.png
|
||||
APP_AUDIO = ctr/assets/silent.wav
|
||||
APP_RSF = ctr/tools/template.rsf
|
||||
APP_ICON = pkg/ctr/assets/default.png
|
||||
APP_BANNER = pkg/ctr/assets/libretro_banner.png
|
||||
APP_AUDIO = pkg/ctr/assets/silent.wav
|
||||
APP_RSF = pkg/ctr/tools/template.rsf
|
||||
APP_SYSTEM_MODE = 64MB
|
||||
APP_SYSTEM_MODE_EXT = 124MB
|
||||
APP_BIG_TEXT_SECTION = 0
|
||||
APP_USE_SVCHAX = 0
|
||||
|
||||
include ctr/Makefile.cores
|
||||
include pkg/ctr/Makefile.cores
|
||||
|
||||
OBJ :=
|
||||
OBJ += gfx/drivers/ctr_shaders/ctr_sprite.o
|
||||
@ -190,14 +190,14 @@ NM := $(PREFIX)nm
|
||||
LD := $(CXX)
|
||||
|
||||
ifneq ($(findstring Linux,$(shell uname -a)),)
|
||||
MAKEROM = ctr/tools/makerom-linux
|
||||
BANNERTOOL = ctr/tools/bannertool-linux
|
||||
MAKEROM = pkg/ctr/tools/makerom-linux
|
||||
BANNERTOOL = pkg/ctr/tools/bannertool-linux
|
||||
else ifneq ($(findstring Darwin,$(shell uname -a)),)
|
||||
MAKEROM = ctr/tools/makerom-mac
|
||||
BANNERTOOL = ctr/tools/bannertool-mac
|
||||
MAKEROM = pkg/ctr/tools/makerom-mac
|
||||
BANNERTOOL = pkg/ctr/tools/bannertool-mac
|
||||
else
|
||||
MAKEROM = ctr/tools/makerom.exe
|
||||
BANNERTOOL = ctr/tools/bannertool.exe
|
||||
MAKEROM = pkg/ctr/tools/makerom.exe
|
||||
BANNERTOOL = pkg/ctr/tools/bannertool.exe
|
||||
endif
|
||||
|
||||
%.o: %.vsh %.gsh
|
||||
@ -228,15 +228,15 @@ endif
|
||||
%.vsh:
|
||||
|
||||
$(TARGET).smdh: $(APP_ICON)
|
||||
smdhtool --create "$(APP_TITLE)" "$(APP_DESCRIPTION)" "$(APP_AUTHOR)" $(APP_ICON) $@
|
||||
$(DEVKITPRO)/devkitARM/bin/smdhtool --create "$(APP_TITLE)" "$(APP_DESCRIPTION)" "$(APP_AUTHOR)" $(APP_ICON) $@
|
||||
|
||||
$(TARGET).3dsx: $(TARGET).elf
|
||||
ifeq ($(APP_BIG_TEXT_SECTION), 1)
|
||||
cp ctr/big_text_section.xml $(TARGET).xml
|
||||
cp pkg/ctr/big_text_section.xml $(TARGET).xml
|
||||
else
|
||||
rm -f $(TARGET).xml
|
||||
endif
|
||||
-3dsxtool $< $@ $(_3DSXFLAGS)
|
||||
$(DEVKITPRO)/devkitARM/bin/3dsxtool $< $@ $(_3DSXFLAGS)
|
||||
|
||||
$(TARGET).elf: ctr/3dsx_custom_crt0.o
|
||||
$(LD) $(LDFLAGS) $(OBJ) $(LIBDIRS) $(LIBS) -o $@
|
||||
|
@ -11,10 +11,10 @@ APP_DESCRIPTION = Retroarch 3DS
|
||||
APP_AUTHOR = Team Libretro
|
||||
APP_PRODUCT_CODE = RETROARCH-3DS
|
||||
APP_UNIQUE_ID = 0xBAC00
|
||||
APP_ICON = ctr/assets/default.png
|
||||
APP_BANNER = ctr/assets/libretro_banner.png
|
||||
APP_AUDIO = ctr/assets/silent.wav
|
||||
APP_RSF = ctr/tools/template.rsf
|
||||
APP_ICON = pkg/ctr/assets/default.png
|
||||
APP_BANNER = pkg/ctr/assets/libretro_banner.png
|
||||
APP_AUDIO = pkg/ctr/assets/silent.wav
|
||||
APP_RSF = pkg/ctr/tools/template.rsf
|
||||
APP_SYSTEM_MODE = 64MB
|
||||
APP_SYSTEM_MODE_EXT = 124MB
|
||||
|
||||
@ -44,7 +44,7 @@ ifeq ($(strip $(DEVKITPRO)),)
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(CTRULIB)),)
|
||||
CTRULIB = $(DEVKITPRO)/ctrulib
|
||||
CTRULIB = $(DEVKITPRO)/libctru
|
||||
endif
|
||||
|
||||
APP_TITLE := $(shell echo "$(APP_TITLE)" | cut -c1-128)
|
||||
@ -122,14 +122,14 @@ NM := $(PREFIX)nm
|
||||
LD := $(CXX)
|
||||
|
||||
ifneq ($(findstring Linux,$(shell uname -a)),)
|
||||
MAKEROM = ctr/tools/makerom-linux
|
||||
BANNERTOOL = ctr/tools/bannertool-linux
|
||||
MAKEROM = pkg/ctr/tools/makerom-linux
|
||||
BANNERTOOL = pkg/ctr/tools/bannertool-linux
|
||||
else ifneq ($(findstring Darwin,$(shell uname -a)),)
|
||||
MAKEROM = ctr/tools/makerom-mac
|
||||
BANNERTOOL = ctr/tools/bannertool-mac
|
||||
MAKEROM = pkg/ctr/tools/makerom-mac
|
||||
BANNERTOOL = pkg/ctr/tools/bannertool-mac
|
||||
else
|
||||
MAKEROM = ctr/tools/makerom.exe
|
||||
BANNERTOOL = ctr/tools/bannertool.exe
|
||||
MAKEROM = pkg/ctr/tools/makerom.exe
|
||||
BANNERTOOL = pkg/ctr/tools/bannertool.exe
|
||||
endif
|
||||
|
||||
%.o: %.vsh %.gsh
|
||||
@ -160,11 +160,11 @@ endif
|
||||
%.vsh:
|
||||
|
||||
$(TARGET).smdh: $(APP_ICON)
|
||||
smdhtool --create "$(APP_TITLE)" "$(APP_DESCRIPTION)" "$(APP_AUTHOR)" $(APP_ICON) $@
|
||||
$(DEVKITPRO)/devkitARM/bin/smdhtool --create "$(APP_TITLE)" "$(APP_DESCRIPTION)" "$(APP_AUTHOR)" $(APP_ICON) $@
|
||||
|
||||
$(TARGET).3dsx: $(TARGET).elf
|
||||
ifeq ($(APP_BIG_TEXT_SECTION), 1)
|
||||
cp ctr/big_text_section.xml $(TARGET).xml
|
||||
cp pkg/ctr/big_text_section.xml $(TARGET).xml
|
||||
else
|
||||
rm -f $(TARGET).xml
|
||||
endif
|
||||
|
BIN
libretro-db/c_converter
Executable file
BIN
libretro-db/libretrodb_tool
Executable file
@ -118,7 +118,7 @@ int main(int argc, char ** argv)
|
||||
{
|
||||
if (argc != 4)
|
||||
{
|
||||
printf("Usage: %s <db file> find-name <query expression>\n", argv[0]);
|
||||
printf("Usage: %s <db file> get-names <query expression>\n", argv[0]);
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
BIN
libretro-db/rmsgpack_test
Executable file
@ -3,79 +3,79 @@ ifeq ($(LIBRETRO), gambatte)
|
||||
APP_TITLE = Gambatte Libretro
|
||||
APP_PRODUCT_CODE = RARCH-GAMBATTE
|
||||
APP_UNIQUE_ID = 0xBAC01
|
||||
APP_ICON = ctr/assets/gambatte.png
|
||||
APP_BANNER = ctr/assets/gambatte_banner.png
|
||||
APP_ICON = pkg/ctr/assets/gambatte.png
|
||||
APP_BANNER = pkg/ctr/assets/gambatte_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), gpsp)
|
||||
APP_TITLE = gpSP Libretro
|
||||
APP_PRODUCT_CODE = RARCH-GPSP
|
||||
APP_UNIQUE_ID = 0xBAC02
|
||||
APP_ICON = ctr/assets/gpsp.png
|
||||
APP_BANNER = ctr/assets/gpsp_banner.png
|
||||
APP_ICON = pkg/ctr/assets/gpsp.png
|
||||
APP_BANNER = pkg/ctr/assets/gpsp_banner.png
|
||||
APP_USE_SVCHAX = 1
|
||||
|
||||
else ifeq ($(LIBRETRO), fceumm)
|
||||
APP_TITLE = FCeumm Libretro
|
||||
APP_PRODUCT_CODE = RARCH-FCEUMM
|
||||
APP_UNIQUE_ID = 0xBAC03
|
||||
APP_ICON = ctr/assets/fceumm.png
|
||||
APP_BANNER = ctr/assets/fceumm_banner.png
|
||||
APP_ICON = pkg/ctr/assets/fceumm.png
|
||||
APP_BANNER = pkg/ctr/assets/fceumm_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), nestopia)
|
||||
APP_TITLE = Nestopia Libretro
|
||||
APP_PRODUCT_CODE = RARCH-NESTOPIA
|
||||
APP_UNIQUE_ID = 0xBAC04
|
||||
APP_ICON = ctr/assets/nestopia.png
|
||||
APP_BANNER = ctr/assets/nestopia_banner.png
|
||||
APP_ICON = pkg/ctr/assets/nestopia.png
|
||||
APP_BANNER = pkg/ctr/assets/nestopia_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), nxengine)
|
||||
APP_TITLE = NXengine Libretro
|
||||
APP_PRODUCT_CODE = RARCH-NXENGINE
|
||||
APP_UNIQUE_ID = 0xBAC05
|
||||
APP_ICON = ctr/assets/nxengine.png
|
||||
APP_BANNER = ctr/assets/nxengine_banner.png
|
||||
APP_ICON = pkg/ctr/assets/nxengine.png
|
||||
APP_BANNER = pkg/ctr/assets/nxengine_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), genesis_plus_gx)
|
||||
APP_TITLE = Genesis Plus GX Libretro
|
||||
APP_PRODUCT_CODE = RARCH-GENPLUSGX
|
||||
APP_UNIQUE_ID = 0xBAC06
|
||||
APP_ICON = ctr/assets/genesis_plus_gx.png
|
||||
APP_BANNER = ctr/assets/genesis_plus_gx_banner.png
|
||||
APP_ICON = pkg/ctr/assets/genesis_plus_gx.png
|
||||
APP_BANNER = pkg/ctr/assets/genesis_plus_gx_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), mednafen_wswan)
|
||||
APP_TITLE = Mednafen wswan Libretro
|
||||
APP_PRODUCT_CODE = RARCH-M-WSWAN
|
||||
APP_UNIQUE_ID = 0xBAC08
|
||||
APP_ICON = ctr/assets/mednafen_wswan.png
|
||||
APP_BANNER = ctr/assets/mednafen_wswan_banner.png
|
||||
APP_ICON = pkg/ctr/assets/mednafen_wswan.png
|
||||
APP_BANNER = pkg/ctr/assets/mednafen_wswan_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), mednafen_vb)
|
||||
APP_TITLE = Mednafen VB Libretro
|
||||
APP_PRODUCT_CODE = RARCH-M-VB
|
||||
APP_UNIQUE_ID = 0xBAC09
|
||||
APP_ICON = ctr/assets/mednafen_vb.png
|
||||
APP_BANNER = ctr/assets/mednafen_vb_banner.png
|
||||
APP_ICON = pkg/ctr/assets/mednafen_vb.png
|
||||
APP_BANNER = pkg/ctr/assets/mednafen_vb_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), mednafen_ngp)
|
||||
APP_TITLE = Mednafen NGP Libretro
|
||||
APP_PRODUCT_CODE = RARCH-M-NGP
|
||||
APP_UNIQUE_ID = 0xBAC0A
|
||||
APP_ICON = ctr/assets/mednafen_ngp.png
|
||||
APP_BANNER = ctr/assets/mednafen_ngp_banner.png
|
||||
APP_ICON = pkg/ctr/assets/mednafen_ngp.png
|
||||
APP_BANNER = pkg/ctr/assets/mednafen_ngp_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), 2048)
|
||||
APP_TITLE = 2048 Libretro
|
||||
APP_PRODUCT_CODE = RARCH-2048
|
||||
APP_UNIQUE_ID = 0xBAC0B
|
||||
APP_ICON = ctr/assets/2048.png
|
||||
APP_BANNER = ctr/assets/2048_banner.png
|
||||
APP_ICON = pkg/ctr/assets/2048.png
|
||||
APP_BANNER = pkg/ctr/assets/2048_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), picodrive)
|
||||
APP_TITLE = Picodrive Libretro
|
||||
APP_PRODUCT_CODE = RARCH-PICODRIVE
|
||||
APP_UNIQUE_ID = 0xBAC0C
|
||||
APP_ICON = ctr/assets/picodrive.png
|
||||
APP_BANNER = ctr/assets/picodrive_banner.png
|
||||
APP_ICON = pkg/ctr/assets/picodrive.png
|
||||
APP_BANNER = pkg/ctr/assets/picodrive_banner.png
|
||||
APP_USE_SVCHAX = 1
|
||||
|
||||
|
||||
@ -84,16 +84,16 @@ else ifeq ($(LIBRETRO), mgba)
|
||||
APP_AUTHOR = Jeffrey Pfau
|
||||
APP_PRODUCT_CODE = RARCH-MGBA
|
||||
APP_UNIQUE_ID = 0xBAC0E
|
||||
APP_ICON = ctr/assets/mgba.png
|
||||
APP_BANNER = ctr/assets/mgba_banner.png
|
||||
APP_ICON = pkg/ctr/assets/mgba.png
|
||||
APP_BANNER = pkg/ctr/assets/mgba_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), quicknes)
|
||||
APP_TITLE = QuickNES Libretro
|
||||
APP_AUTHOR = blargg, kode54
|
||||
APP_PRODUCT_CODE = RARCH-QUICKNES
|
||||
APP_UNIQUE_ID = 0xBAC0F
|
||||
APP_ICON = ctr/assets/quicknes.png
|
||||
APP_BANNER = ctr/assets/quicknes_banner.png
|
||||
APP_ICON = pkg/ctr/assets/quicknes.png
|
||||
APP_BANNER = pkg/ctr/assets/quicknes_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), fbalpha2012)
|
||||
APP_TITLE = Final Burn Alpha 2012
|
||||
@ -101,16 +101,16 @@ else ifeq ($(LIBRETRO), fbalpha2012)
|
||||
APP_PRODUCT_CODE = RARCH-FBA
|
||||
APP_UNIQUE_ID = 0xBAC17
|
||||
APP_BIG_TEXT_SECTION = 1
|
||||
APP_ICON = ctr/assets/fbalpha2012.png
|
||||
APP_BANNER = ctr/assets/fbalpha2012_banner.png
|
||||
APP_ICON = pkg/ctr/assets/fbalpha2012.png
|
||||
APP_BANNER = pkg/ctr/assets/fbalpha2012_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), fbalpha2012_neogeo)
|
||||
APP_TITLE = Final Burn Alpha 2012 - NeoGeo
|
||||
APP_AUTHOR = Team FB Alpha
|
||||
APP_PRODUCT_CODE = RARCH-FBANEOGEO
|
||||
APP_UNIQUE_ID = 0xBAC10
|
||||
APP_ICON = ctr/assets/fbalpha2012_neogeo.png
|
||||
APP_BANNER = ctr/assets/fbalpha2012_neogeo_banner.png
|
||||
APP_ICON = pkg/ctr/assets/fbalpha2012_neogeo.png
|
||||
APP_BANNER = pkg/ctr/assets/fbalpha2012_neogeo_banner.png
|
||||
APP_SYSTEM_MODE = 80MB
|
||||
|
||||
else ifeq ($(LIBRETRO), fbalpha2012_cps1)
|
||||
@ -118,16 +118,16 @@ else ifeq ($(LIBRETRO), fbalpha2012_cps1)
|
||||
APP_AUTHOR = Team FB Alpha
|
||||
APP_PRODUCT_CODE = RARCH-FBACPS1
|
||||
APP_UNIQUE_ID = 0xBAC11
|
||||
APP_ICON = ctr/assets/fbalpha2012_cps1.png
|
||||
APP_BANNER = ctr/assets/fbalpha2012_cps1_banner.png
|
||||
APP_ICON = pkg/ctr/assets/fbalpha2012_cps1.png
|
||||
APP_BANNER = pkg/ctr/assets/fbalpha2012_cps1_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), fbalpha2012_cps2)
|
||||
APP_TITLE = Final Burn Alpha 2012 - CPS-2
|
||||
APP_AUTHOR = Team FB Alpha
|
||||
APP_PRODUCT_CODE = RARCH-FBACPS2
|
||||
APP_UNIQUE_ID = 0xBAC12
|
||||
APP_ICON = ctr/assets/fbalpha2012_cps2.png
|
||||
APP_BANNER = ctr/assets/fbalpha2012_cps2_banner.png
|
||||
APP_ICON = pkg/ctr/assets/fbalpha2012_cps2.png
|
||||
APP_BANNER = pkg/ctr/assets/fbalpha2012_cps2_banner.png
|
||||
APP_SYSTEM_MODE = 80MB
|
||||
|
||||
|
||||
@ -136,16 +136,16 @@ else ifeq ($(LIBRETRO), mednafen_pce_fast)
|
||||
APP_AUTHOR = Ryphecha
|
||||
APP_PRODUCT_CODE = RARCH-M-PCE-FAST
|
||||
APP_UNIQUE_ID = 0xBAC14
|
||||
APP_ICON = ctr/assets/mednafen_pce_fast.png
|
||||
APP_BANNER = ctr/assets/mednafen_pce_fast_banner.png
|
||||
APP_ICON = pkg/ctr/assets/mednafen_pce_fast.png
|
||||
APP_BANNER = pkg/ctr/assets/mednafen_pce_fast_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), pcsx_rearmed)
|
||||
APP_TITLE = PCSX ReARMed
|
||||
APP_AUTHOR = PCSX Team, notaz, Exophase
|
||||
APP_PRODUCT_CODE = RARCH-PCSXRARMD
|
||||
APP_UNIQUE_ID = 0xBAC15
|
||||
APP_ICON = ctr/assets/pcsx_rearmed.png
|
||||
APP_BANNER = ctr/assets/pcsx_rearmed_banner.png
|
||||
APP_ICON = pkg/ctr/assets/pcsx_rearmed.png
|
||||
APP_BANNER = pkg/ctr/assets/pcsx_rearmed_banner.png
|
||||
APP_USE_SVCHAX = 1
|
||||
|
||||
else ifeq ($(LIBRETRO), fmsx)
|
||||
@ -153,23 +153,23 @@ else ifeq ($(LIBRETRO), fmsx)
|
||||
APP_AUTHOR = Marat Fayzullin
|
||||
APP_PRODUCT_CODE = RARCH-FMSX
|
||||
APP_UNIQUE_ID = 0xBAC16
|
||||
APP_ICON = ctr/assets/fmsx.png
|
||||
APP_BANNER = ctr/assets/fmsx_banner.png
|
||||
APP_ICON = pkg/ctr/assets/fmsx.png
|
||||
APP_BANNER = pkg/ctr/assets/fmsx_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), mame2000)
|
||||
APP_TITLE = MAME-2000
|
||||
APP_PRODUCT_CODE = RARCH-MAME2000
|
||||
APP_UNIQUE_ID = 0xBAC19
|
||||
APP_ICON = ctr/assets/mame2000.png
|
||||
APP_BANNER = ctr/assets/mame2000_banner.png
|
||||
APP_ICON = pkg/ctr/assets/mame2000.png
|
||||
APP_BANNER = pkg/ctr/assets/mame2000_banner.png
|
||||
APP_BIG_TEXT_SECTION = 1
|
||||
|
||||
else ifeq ($(LIBRETRO), mame2003)
|
||||
APP_TITLE = MAME-2003
|
||||
APP_PRODUCT_CODE = RARCH-MAME2003
|
||||
APP_UNIQUE_ID = 0xBAC18
|
||||
APP_ICON = ctr/assets/mame2003.png
|
||||
APP_BANNER = ctr/assets/mame2003_banner.png
|
||||
APP_ICON = pkg/ctr/assets/mame2003.png
|
||||
APP_BANNER = pkg/ctr/assets/mame2003_banner.png
|
||||
APP_BIG_TEXT_SECTION = 1
|
||||
|
||||
|
||||
@ -178,36 +178,68 @@ else ifeq ($(LIBRETRO), snes9x2002)
|
||||
APP_AUTHOR = various
|
||||
APP_PRODUCT_CODE = RARCH-POCKETSNES
|
||||
APP_UNIQUE_ID = 0xBAC1A
|
||||
APP_ICON = ctr/assets/snes9x2002.png
|
||||
APP_BANNER = ctr/assets/snes9x2002_banner.png
|
||||
APP_ICON = pkg/ctr/assets/snes9x2002.png
|
||||
APP_BANNER = pkg/ctr/assets/snes9x2002_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), snes9x2005)
|
||||
APP_TITLE = Snes9x 2005
|
||||
APP_PRODUCT_CODE = RARCH-CATSFC
|
||||
APP_UNIQUE_ID = 0xBAC07
|
||||
APP_ICON = ctr/assets/snes9x2005.png
|
||||
APP_BANNER = ctr/assets/snes9x2005_banner.png
|
||||
APP_ICON = pkg/ctr/assets/snes9x2005.png
|
||||
APP_BANNER = pkg/ctr/assets/snes9x2005_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), snes9x2005_plus)
|
||||
APP_TITLE = Snes9x 2005 Plus
|
||||
APP_PRODUCT_CODE = RARCH-CATSFCPLUS
|
||||
APP_UNIQUE_ID = 0xBAC13
|
||||
APP_ICON = ctr/assets/snes9x2005_plus.png
|
||||
APP_BANNER = ctr/assets/snes9x2005_plus_banner.png
|
||||
APP_ICON = pkg/ctr/assets/snes9x2005_plus.png
|
||||
APP_BANNER = pkg/ctr/assets/snes9x2005_plus_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), snes9x2010)
|
||||
APP_TITLE = Snes9x 2010
|
||||
APP_PRODUCT_CODE = RARCH-SNES9XNEXT
|
||||
APP_UNIQUE_ID = 0xBAC0D
|
||||
APP_ICON = ctr/assets/snes9x2010.png
|
||||
APP_BANNER = ctr/assets/snes9x2010_banner.png
|
||||
APP_ICON = pkg/ctr/assets/snes9x2010.png
|
||||
APP_BANNER = pkg/ctr/assets/snes9x2010_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), dosbox)
|
||||
APP_TITLE = DosBox
|
||||
APP_AUTHOR = various
|
||||
APP_PRODUCT_CODE = RARCH-DOSBOX
|
||||
APP_UNIQUE_ID = 0xBAC1B
|
||||
APP_ICON = ctr/assets/dosbox.png
|
||||
APP_BANNER = ctr/assets/dosbox_banner.png
|
||||
APP_ICON = pkg/ctr/assets/dosbox.png
|
||||
APP_BANNER = pkg/ctr/assets/dosbox_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), nekop2)
|
||||
APP_TITLE = Neko Project 2
|
||||
APP_AUTHOR = various
|
||||
APP_PRODUCT_CODE = RARCH-NP2
|
||||
APP_UNIQUE_ID = 0xBAC1C
|
||||
APP_ICON = pkg/ctr/assets/nekop2.png
|
||||
APP_BANNER = pkg/ctr/assets/nekop2_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), np2kai)
|
||||
APP_TITLE = Neko Project 2 Kai
|
||||
APP_AUTHOR = various
|
||||
APP_PRODUCT_CODE = RARCH-NP2KAI
|
||||
APP_UNIQUE_ID = 0xBAC1D
|
||||
APP_ICON = pkg/ctr/assets/np2kai.png
|
||||
APP_BANNER = pkg/ctr/assets/np2kai_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), 81)
|
||||
APP_TITLE = lr-81
|
||||
APP_AUTHOR = various
|
||||
APP_PRODUCT_CODE = RARCH-81
|
||||
APP_UNIQUE_ID = 0xBAC1E
|
||||
APP_ICON = pkg/ctr/assets/81.png
|
||||
APP_BANNER = pkg/ctr/assets/81_banner.png
|
||||
|
||||
else ifeq ($(LIBRETRO), fuse)
|
||||
APP_TITLE = Fuse
|
||||
APP_AUTHOR = various
|
||||
APP_PRODUCT_CODE = RARCH-FUSE
|
||||
APP_UNIQUE_ID = 0xBAC1F
|
||||
APP_ICON = pkg/ctr/assets/fuse.png
|
||||
APP_BANNER = pkg/ctr/assets/fuse_banner.png
|
||||
|
||||
endif
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
BIN
pkg/ctr/assets/81.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
pkg/ctr/assets/81_banner.png
Normal file
After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 357 B After Width: | Height: | Size: 357 B |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 311 B After Width: | Height: | Size: 311 B |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 736 B After Width: | Height: | Size: 736 B |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 943 B After Width: | Height: | Size: 943 B |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 562 B After Width: | Height: | Size: 562 B |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 880 B After Width: | Height: | Size: 880 B |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
BIN
pkg/ctr/assets/libretro_neutral_shaded_banner.png
Normal file
After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 961 B After Width: | Height: | Size: 961 B |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
BIN
pkg/ctr/assets/nekop2.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
pkg/ctr/assets/nekop2_banner.png
Normal file
After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 669 B After Width: | Height: | Size: 669 B |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
BIN
pkg/ctr/assets/np2kai.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
pkg/ctr/assets/np2kai_banner.png
Normal file
After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 343 B After Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 779 B After Width: | Height: | Size: 779 B |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 874 B After Width: | Height: | Size: 874 B |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 639 B After Width: | Height: | Size: 639 B |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |