tic80: Update TIC-80 definitions

This commit is contained in:
Rob Loach 2019-06-18 22:40:33 -04:00
parent 6e5635d975
commit a3b99dbe3f
No known key found for this signature in database
GPG key ID: 627C60834A74A21A
2 changed files with 2 additions and 2 deletions

View file

@ -111,7 +111,7 @@ stella libretro-stella https://github.com/stella-emu/stella.git master YES GENER
tgbdual libretro-tgbdual https://github.com/libretro/tgbdual-libretro.git master YES GENERIC Makefile .
theodore libretro-theodore https://github.com/Zlika/theodore.git master YES GENERIC Makefile .
thepowdertoy libretro-thepowdertoy https://github.com/libretro/ThePowderToy.git master YES CMAKE Makefile build -DCMAKE_BUILD_TYPE=Release
tic80 libretro-tic80 https://github.com/RobLoach/TIC-80.git libretro YES GENERIC Makefile examples/libretro
tic80 libretro-tic80 https://github.com/RobLoach/TIC-80.git libretro YES CMAKE Makefile examples/libretro -DBUILD_SDL=0 -DBUILD_SOKOL=0
tyrquake libretro-tyrquake https://github.com/libretro/tyrquake.git master YES GENERIC Makefile .
uzem libretro-uzem https://github.com/libretro/libretro-uzem.git master YES GENERIC Makefile .
vba_next libretro-vba_next https://github.com/libretro/vba-next.git master YES GENERIC Makefile.libretro .

View file

@ -23,7 +23,7 @@ fetch_git() {
echo_cmd "git clone $depth\"$1\" \"$WORKDIR/$2\""
if [[ "$3" = "yes" || "$3" = "clone" ]]; then
echo_cmd "cd \"$fetch_dir\""
echo_cmd "git submodule update --init"
echo_cmd "git submodule update --init --recursive"
fi
fi
}