Skip to content

Commit

Permalink
Merge pull request #258 from Cpasjuste/dev
Browse files Browse the repository at this point in the history
v6.7
  • Loading branch information
Cpasjuste authored Sep 11, 2023
2 parents b880179 + 4131845 commit 984bacc
Show file tree
Hide file tree
Showing 1,515 changed files with 107,975 additions and 420,643 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/3ds-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: 3ds-dev

on:
push:
branches: [ dev ]
workflow_dispatch:

jobs:

build-3ds-dev:
runs-on: ubuntu-20.04
container: devkitpro/devkitarm:latest
defaults:
run:
shell: bash

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Install build dependencies
run: |
sudo apt -yq update
sudo apt -yq install git build-essential cmake zip
- name: Build pfbneo
run: |
mkdir cmake-build-pfbneo && cd cmake-build-pfbneo
source /etc/profile.d/devkit-env.sh
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pfbneo \
-DOPTION_LIGHT=ON -DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Debug ..
make pfbneo.deps
make -j $(getconf _NPROCESSORS_ONLN) pfbneo.3dsx
- name: Build pgen
run: |
mkdir cmake-build-pgen && cd cmake-build-pgen
source /etc/profile.d/devkit-env.sh
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pgen \
-DOPTION_LIGHT=ON -DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Debug ..
make -j $(getconf _NPROCESSORS_ONLN) pgen.3dsx
- name: Build pnes
run: |
mkdir cmake-build-pnes && cd cmake-build-pnes
source /etc/profile.d/devkit-env.sh
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pnes \
-DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Debug ..
make -j $(getconf _NPROCESSORS_ONLN) pnes.3dsx
# too slow for 3ds for now...
#- name: Build psnes
#run: |
#mkdir cmake-build-psnes && cd cmake-build-psnes
#source /etc/profile.d/devkit-env.sh
#cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_MPV_PLAYER=OFF -DOPTION_EMU=psnes -DCMAKE_BUILD_TYPE=Debug ..
#make -j $(getconf _NPROCESSORS_ONLN) psnes.3dsx
65 changes: 65 additions & 0 deletions .github/workflows/3ds-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: 3ds-release

on:
push:
tags:
- "v*.*"

jobs:

build-3ds-release:
runs-on: ubuntu-20.04
container: devkitpro/devkitarm:latest
defaults:
run:
shell: bash

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Install build dependencies
run: |
sudo apt -yq update
sudo apt -yq install git build-essential cmake zip
- name: Build pfbneo
run: |
mkdir cmake-build-pfbneo && cd cmake-build-pfbneo
source /etc/profile.d/devkit-env.sh
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON \
-DOPTION_EMU=pfbneo -DOPTION_LIGHT=ON -DCMAKE_BUILD_TYPE=Release ..
make pfbneo.deps
make -j $(getconf _NPROCESSORS_ONLN) pfbneo.3dsx
- name: Build pgen
run: |
mkdir cmake-build-pgen && cd cmake-build-pgen
source /etc/profile.d/devkit-env.sh
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pgen \
-DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Release ..
make -j $(getconf _NPROCESSORS_ONLN) pgen.3dsx
- name: Build pnes
run: |
mkdir cmake-build-pnes && cd cmake-build-pnes
source /etc/profile.d/devkit-env.sh
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pnes \
-DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Release ..
make -j $(getconf _NPROCESSORS_ONLN) pnes.3dsx
# too slow for 3ds for now...
#- name: Build psnes
#run: |
#mkdir cmake-build-psnes && cd cmake-build-psnes
#source /etc/profile.d/devkit-env.sh
#cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_MPV_PLAYER=OFF -DOPTION_EMU=psnes -DCMAKE_BUILD_TYPE=Release ..
#make -j $(getconf _NPROCESSORS_ONLN) psnes.3dsx

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: '*.3dsx'
token: ${{ secrets.RELEASE_TOKEN }}
11 changes: 0 additions & 11 deletions .github/workflows/switch-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,6 @@ jobs:
sudo apt -yq update
sudo apt -yq install git build-essential cmake zip
# TODO: remove when merged
- name: Update SDL2
run: |
git clone --depth 1 --branch switch-sdl2-2.0.14-dev https://github.com/devkitPro/SDL.git
cd SDL && mkdir build && cd build
cmake \
-DCMAKE_TOOLCHAIN_FILE=/opt/devkitpro/cmake/Switch.cmake \
-DCMAKE_INSTALL_PREFIX=/opt/devkitpro/portlibs/switch \
-DCMAKE_BUILD_TYPE=Debug ..
make -j $(getconf _NPROCESSORS_ONLN) install
- name: Build pfbneo
run: |
mkdir cmake-build-pfbneo && cd cmake-build-pfbneo
Expand Down
11 changes: 0 additions & 11 deletions .github/workflows/switch-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,6 @@ jobs:
sudo apt -yq update
sudo apt -yq install git build-essential cmake zip
# TODO: remove when merged
- name: Update SDL2
run: |
git clone --depth 1 --branch switch-sdl2-2.0.14-dev https://github.com/devkitPro/SDL.git
cd SDL && mkdir build && cd build
cmake \
-DCMAKE_TOOLCHAIN_FILE=/opt/devkitpro/cmake/Switch.cmake \
-DCMAKE_INSTALL_PREFIX=/opt/devkitpro/portlibs/switch \
-DCMAKE_BUILD_TYPE=Release ..
make -j $(getconf _NPROCESSORS_ONLN) install
- name: Build pfbneo
run: |
mkdir cmake-build-pfbneo && cd cmake-build-pfbneo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vita-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
mkdir cmake-build-pfbneo && cd cmake-build-pfbneo
export VITASDK=/usr/local/vitasdk
cmake -G "Unix Makefiles" -DPLATFORM_VITA=ON \
-DOPTION_DISABLE_CONSOLES=ON -DOPTION_BUILTIN_MINIZIP=ON -DOPTION_MPV_PLAYER=OFF \
-DOPTION_LIGHT=ON -DOPTION_BUILTIN_MINIZIP=ON -DOPTION_MPV_PLAYER=OFF \
-DOPTION_EMU=pfbneo -DCMAKE_BUILD_TYPE=Debug ..
make pfbneo.deps
make -j $(getconf _NPROCESSORS_ONLN) pfbneo.vpk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vita-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
mkdir cmake-build-pfbneo && cd cmake-build-pfbneo
export VITASDK=/usr/local/vitasdk
cmake -G "Unix Makefiles" -DPLATFORM_VITA=ON \
-DOPTION_DISABLE_CONSOLES=ON -DOPTION_BUILTIN_MINIZIP=ON -DOPTION_MPV_PLAYER=OFF \
-DOPTION_LIGHT=ON -DOPTION_BUILTIN_MINIZIP=ON -DOPTION_MPV_PLAYER=OFF \
-DOPTION_EMU=pfbneo -DCMAKE_BUILD_TYPE=Release ..
make pfbneo.deps
make -j $(getconf _NPROCESSORS_ONLN) pfbneo.vpk
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ ss_dev_id.key
ss_dev_pwd.key
ss_user_id.key
ss_user_pwd.key

# android
keystore.properties
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ add_subdirectory(sscrap)
project(pemu)
set(PROJECT_AUTHOR cpasjuste)
set(VERSION_MAJOR 6)
set(VERSION_MINOR 5)
set(VERSION_MINOR 7)

# pemu (ui)
add_subdirectory(ui)
Expand Down
123 changes: 24 additions & 99 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
[![switch-release](https://github.com/Cpasjuste/pemu/actions/workflows/switch-release.yml/badge.svg)](https://github.com/Cpasjuste/pemu/actions/workflows/switch-release.yml)
[![switch-dev](https://github.com/Cpasjuste/pemu/actions/workflows/switch-dev.yml/badge.svg)](https://github.com/Cpasjuste/pemu/actions/workflows/switch-dev.yml)

[![3ds-release](https://github.com/Cpasjuste/pemu/actions/workflows/3ds-release.yml/badge.svg)](https://github.com/Cpasjuste/pemu/actions/workflows/3ds-release.yml)
[![3ds-dev](https://github.com/Cpasjuste/pemu/actions/workflows/3ds-dev.yml/badge.svg)](https://github.com/Cpasjuste/pemu/actions/workflows/3ds-dev.yml)

[![ps4-release](https://github.com/Cpasjuste/pemu/actions/workflows/ps4-release.yml/badge.svg)](https://github.com/Cpasjuste/pemu/actions/workflows/ps4-release.yml)
[![ps4-dev](https://github.com/Cpasjuste/pemu/actions/workflows/ps4-dev.yml/badge.svg)](https://github.com/Cpasjuste/pemu/actions/workflows/ps4-dev.yml)

Expand All @@ -15,102 +18,24 @@

## pEMU: Portable Emulator

**<ins>Building on ubuntu for ubuntu</ins>**
- Install build dependencies:
```
sudo apt -yq update
sudo apt -yq install \
git zip build-essential cmake xxd \
liblzma-dev libsdl2-dev libconfig-dev libcurl4-openssl-dev libtinyxml2-dev \
libconfig-dev libglm-dev libfreetype6-dev libpng-dev libminizip-dev zlib1g-dev \
libvdpau-dev libva-dev libavcodec-dev libavfilter-dev libavformat-dev libavutil-dev \
libpostproc-dev libswresample-dev libswscale-dev libmpv-dev libass-dev libbz2-dev \
libfribidi-dev libzip-dev libarchive-dev libfuse-dev
```
- clone pemu repository:
```
git clone --recursive https://github.com/Cpasjuste/pemu.git`
```
- build (replace `pfbneo` with emulator target: `pfbneo`, `psnes`, `pnes`, `pgen` or remove this option for all emulators):
```
mkdir cmake-build && cd cmake-build
cmake -G "Unix Makefiles" -DPLATFORM_LINUX=ON -DOPTION_BUILTIN_LIBCONFIG=ON \
-DOPTION_EMU=pfbneo -DCMAKE_BUILD_TYPE=Release ..
make pfbneo.deps
make -j $(getconf _NPROCESSORS_ONLN) pfbneo_linux_release
```
**<ins>Building on ubuntu for nintendo switch</ins>**
- Install build dependencies:
```
sudo apt -yq update
sudo apt -yq install zip git autoconf libtool automake build-essential cmake
```
- Install switch toolchain:
```
wget https://github.com/devkitPro/pacman/releases/download/v1.0.2/devkitpro-pacman.amd64.deb
sudo dpkg -i devkitpro-pacman.amd64.deb
sudo dkp-pacman -Syu
sudo dkp-pacman --noconfirm -S switch-dev switch-portlibs
```
- clone pemu repository:
```
git clone --recursive https://github.com/Cpasjuste/pemu.git`
```
- build (replace `pfbneo` with emulator target: `pfbneo`, `psnes`, `pnes`, `pgen` or remove this option for all emulators):
```
mkdir cmake-build && cd cmake-build
source /etc/profile.d/devkit-env.sh
cmake -G "Unix Makefiles" -DPLATFORM_SWITCH=ON -DOPTION_EMU=pfbneo \
-DCMAKE_BUILD_TYPE=Release ..
make pfbneo.deps
make -j $(getconf _NPROCESSORS_ONLN) pfbneo_switch_release
```
**<ins>Building on ubuntu for sony ps4</ins>**
- Install build dependencies:
```
sudo apt -yq update
sudo apt -yq install git build-essential cmake zip libgpgme11
```
- Install ps4 toolchain:
```
wget https://github.com/PacBrew/pacbrew-pacman/releases/download/pacbrew-release-1.0/pacbrew-pacman-1.0.deb
sudo dpkg -i pacbrew-pacman-1.0.deb
sudo pacbrew-pacman -Syu
sudo pacbrew-pacman --noconfirm -S ps4-openorbis ps4-openorbis-portlibs
```
- clone pemu repository:
```
git clone --recursive https://github.com/Cpasjuste/pemu.git`
```
- build (replace `pfbneo` with emulator target: `pfbneo`, `psnes`, `pnes`, `pgen` or remove this option for all emulators):
```
mkdir cmake-build && cd cmake-build
export OPENORBIS=/opt/pacbrew/ps4/openorbis
cmake -G "Unix Makefiles" -DPLATFORM_PS4=ON -DOPTION_EMU=pfbneo -DCMAKE_BUILD_TYPE=Release ..
make pfbneo.deps
make -j $(getconf _NPROCESSORS_ONLN) pfbneo_ps4_release
```
**<ins>Building on windows for windows</ins>**
- download, install and update [MYSYS2](http://www.msys2.org/)
- install build dependencies:
```
pacman -S --noconfirm --needed git zip perl make \
mingw-w64-x86_64-binutils mingw-w64-x86_64-gcc mingw-w64-x86_64-make mingw-w64-x86_64-cmake mingw-w64-x86_64-pkgconf \
mingw-w64-x86_64-SDL2 mingw-w64-x86_64-freetype mingw-w64-x86_64-glm \
mingw-w64-x86_64-glew mingw-w64-x86_64-libconfig mingw-w64-x86_64-tinyxml2 \
mingw-w64-x86_64-mpv mingw-w64-x86_64-zlib mingw-w64-x86_64-minizip mingw-w64-x86_64-libarchive
```
- clone pemu repository:
```
git clone --recursive https://github.com/Cpasjuste/pemu.git`
```
- build (replace `pfbneo` with emulator target: `pfbneo`, `psnes`, `pnes`, `pgen` or remove this option for all emulators):
```
mkdir cmake-build && cd cmake-build
cmake -G "MSYS Makefiles" -DPLATFORM_WINDOWS=ON -DOPTION_EMU=pfbneo -DCMAKE_BUILD_TYPE=Release ..
make pfbneo.deps
make pfbneo
```
**<ins>Building</ins>**
- [Linux](https://github.com/Cpasjuste/pemu/blob/master/.github/workflows/linux-release.yml)
- [Windows](https://github.com/Cpasjuste/pemu/blob/master/.github/workflows/windows-release.yml)
- [Nintendo Switch](https://github.com/Cpasjuste/pemu/blob/master/.github/workflows/switch-release.yml)
- [Sony PS4](https://github.com/Cpasjuste/pemu/blob/master/.github/workflows/ps4-release.yml)
- [Sony PS VITA](https://github.com/Cpasjuste/pemu/blob/master/.github/workflows/vita-release.yml)

**<ins>Common instructions</ins>**
- "pEMU" emulators use [embedded (romfs)](https://github.com/Cpasjuste/pemu/tree/master/pfbneo/data/common/romfs) "gamelist.xml" files to manage your rom files.
Since version 6.7, the emulator will also look inside your configured rom folders for a "gamelist.xml" file (EmulationStation format, which can be made with ["Skraper"](https://www.skraper.net/) for example).
This will overwrite the embedded "gamelist.xml" database. Please take note that only the "\<image>" and "\<video>" media tags are supported.
- Default skins are also [embedded (romfs)](https://github.com/Cpasjuste/pemu/tree/master/data/common/romfs/skins/default) in the application.
You can overwrite parts of the default theme by creating a folder named "default" in the "skins" directory of the data folder, and adding a ["config.cfg.override"](https://github.com/Cpasjuste/pemu/tree/master/pgen/data/common/romfs/skins/default/config.cfg.override) (and/or a ["config.cfg.override.43"](https://github.com/Cpasjuste/pemu/tree/master/data/common/romfs/skins/default/config.cfg.override.43) for 4/3 screens) file.
You can also create a new directory with a new name to create a new theme, the [default](https://github.com/Cpasjuste/pemu/tree/master/data/common/romfs/skins/default) one is a good start to look at.
Please note that the theme code/api is subject to change without warning, do not loose too much time on this...

**<ins>Custom instructions</ins>**
- [pfbneo](https://github.com/Cpasjuste/pemu/tree/master/pfbneo)
- [pgen](https://github.com/Cpasjuste/pemu/tree/master/pgen)
- [pnes](https://github.com/Cpasjuste/pemu/tree/master/pnes)
- [psnes](https://github.com/Cpasjuste/pemu/tree/master/psnes)
2 changes: 1 addition & 1 deletion cores/genesis
Submodule genesis updated 77 files
+27 −4 HISTORY.txt
+1 −1 Makefile.gc
+1 −1 Makefile.wii
+6 −8 README.md
+ builds/genesis_plus_gx_libretro.dll
+ builds/genplus_cube.dol
+ builds/genplus_wii.dol
+1 −1 core/cart_hw/eeprom_93c.c
+1 −1 core/cart_hw/eeprom_93c.h
+3 −3 core/cart_hw/eeprom_i2c.c
+1 −1 core/cart_hw/eeprom_i2c.h
+1 −1 core/cart_hw/eeprom_spi.c
+1 −1 core/cart_hw/eeprom_spi.h
+190 −114 core/cart_hw/md_cart.c
+1 −1 core/cart_hw/md_cart.h
+34 −13 core/cart_hw/megasd.c
+1 −1 core/cart_hw/megasd.h
+364 −80 core/cart_hw/sms_cart.c
+2 −1 core/cart_hw/sms_cart.h
+1 −1 core/cart_hw/sram.c
+1 −1 core/cart_hw/sram.h
+28 −14 core/cd_hw/cdd.c
+1 −1 core/cd_hw/cdd.h
+119 −102 core/cd_hw/gfx.c
+1 −1 core/cd_hw/gfx.h
+14 −0 core/cd_hw/scd.c
+3 −2 core/genesis.c
+1 −1 core/genesis.h
+1 −1 core/input_hw/mouse.c
+2 −2 core/input_hw/xe_1ap.c
+1 −1 core/input_hw/xe_1ap.h
+3 −3 core/m68k/m68kcpu.h
+61 −61 core/m68k/m68ki_cycles.h
+116 −30 core/m68k/m68kops.h
+1 −1 core/m68k/s68kcpu.c
+61 −61 core/m68k/s68ki_cycles.h
+71 −27 core/mem68k.c
+1 −1 core/mem68k.h
+11 −4 core/memz80.c
+1 −1 core/memz80.h
+1 −1 core/sound/psg.c
+2 −1 core/sound/ym2413.c
+2 −2 core/sound/ym2612.c
+13 −12 core/system.h
+37 −14 core/vdp_ctrl.c
+1 −1 core/vdp_ctrl.h
+631 −1 core/vdp_render.c
+2 −0 core/vdp_render.h
+6 −3 gcw0/config.c
+3 −0 gcw0/config.h
+1 −1 gcw0/main.c
+2 −2 gcw0/utils.c
+7 −1 gx/config.c
+9 −3 gx/config.h
+ gx/docs/README.doc
+ gx/docs/README.pdf
+59 −11 gx/gui/cheats.c
+1 −1 gx/gui/cheats.h
+104 −34 gx/gui/menu.c
+1 −1 gx/gui/menu.h
+118 −43 gx/gx_input.c
+1 −1 gx/gx_input.h
+5 −8 gx/gx_video.c
+1 −1 gx/gx_video.h
+6 −1 gx/main.c
+146 −40 libretro/libretro.c
+79 −9 libretro/libretro_core_options.h
+4 −1 libretro/osd.h
+9 −6 psp2/config.c
+3 −0 psp2/config.h
+9 −6 sdl/config.c
+3 −0 sdl/config.h
+64 −0 wiki/Compatibility.md
+45 −0 wiki/Credits.md
+109 −0 wiki/Features.md
+119 −0 wiki/Frequently Asked Questions.md
+64 −0 wiki/Getting Started.md
2 changes: 1 addition & 1 deletion cores/nestopia
Submodule nestopia updated 45 files
+30 −0 ChangeLog
+4 −0 Makefile.am
+306 −259 NstDatabase.xml
+1 −1 README.md
+3 −1 configure.ac
+0 −2,699 projects/core.vcproj
+4 −0 projects/core.vcxproj
+16 −0 projects/core.vcxproj.filters
+0 −205 projects/language.vcproj
+0 −1,450 projects/win32.vcproj
+8 −35 source/core/NstApu.cpp
+0 −7 source/core/NstApu.hpp
+1 −1 source/core/NstCartridgeInes.cpp
+23 −4 source/core/NstPatcherIps.cpp
+3 −1 source/core/NstPpu.cpp
+3 −3 source/core/NstSoundRenderer.cpp
+1 −1 source/core/NstSoundRenderer.hpp
+7 −15 source/core/NstTrackerRewinder.cpp
+0 −1 source/core/NstTrackerRewinder.hpp
+1 −1 source/core/NstVideoFilterNtsc.cpp
+1 −1 source/core/NstVideoRenderer.cpp
+1 −1 source/core/NstVideoRenderer.hpp
+0 −10 source/core/api/NstApiSound.cpp
+1 −16 source/core/api/NstApiSound.hpp
+1 −1 source/core/api/NstApiVideo.cpp
+80 −51 source/core/board/NstBoard.cpp
+2 −0 source/core/board/NstBoard.hpp
+2 −2 source/core/board/NstBoardInlNsf.cpp
+129 −0 source/core/board/NstBoardUnl158b.cpp
+67 −0 source/core/board/NstBoardUnl158b.hpp
+119 −0 source/core/board/NstBoardUnlRetX7Gbl.cpp
+67 −0 source/core/board/NstBoardUnlRetX7Gbl.hpp
+0 −2 source/fltkui/audio.cpp
+1 −1 source/fltkui/cli.cpp
+1 −1 source/fltkui/config.cpp
+3 −3 source/fltkui/fltkui.cpp
+7 −13 source/fltkui/fltkui_config.cpp
+1 −1 source/win32/NstDialogAbout.cpp
+1 −1 source/win32/NstDialogImageInfo.cpp
+1 −1 source/win32/NstDialogPreferences.cpp
+5 −28 source/win32/NstDialogSound.cpp
+0 −1 source/win32/NstDialogSound.hpp
+1 −1 source/win32/NstManagerAviConverter.cpp
+1 −1 source/win32/NstManagerSound.cpp
+3 −5 source/win32/language/language.rc
2 changes: 1 addition & 1 deletion cores/snes9x
Submodule snes9x updated 408 files
Binary file added data/3ds/romfs/skins/default/buttons/0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/3ds/romfs/skins/default/buttons/9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/common/romfs/skins/default/buttons/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/common/romfs/skins/default/buttons/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 984bacc

Please sign in to comment.