forked from bardeci/gambatte-dms
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added scripts for building a multi-system OPK (opendingux/retrofw) - Now the app autodetects if the OS supports IPU scaling and displays the appropiate scaling options if applicable. - Added support for per-game settings. - Unified some redundant functions in the menu code. - Added support for the PG2 dedicated menu button.
- Loading branch information
Showing
14 changed files
with
478 additions
and
314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,27 @@ | ||
#!/bin/sh | ||
|
||
BDAT=$(date +"%Y%m%d-%H%M%S") | ||
|
||
echo '#define BUILDDATE "'$BDAT'"' >./gambatte_sdl/builddate.h | ||
|
||
echo "cd libgambatte && scons" | ||
(cd libgambatte && scons -Q target=opendingux) || exit | ||
|
||
echo "cd gambatte_sdl && scons" | ||
(cd gambatte_sdl && scons -Q target=opendingux) | ||
mv gambatte_sdl/gambatte_sdl gambatte_sdl/gambatte.opendingux | ||
|
||
rm -f gambatte-opendingux-r572u3-$BDAT.opk | ||
|
||
mksquashfs ./dist/gcw0/default.gcw0.desktop ./gambatte_sdl/gambatte_sdl ./dist/gcw0/gambatte.png ./dist/gcw0/manual.txt gambatte-opendingux-r572u3-$BDAT.opk -all-root -no-xattrs -noappend -no-exports | ||
mksquashfs ./dist/gcw0/default.gcw0.desktop ./gambatte_sdl/gambatte.opendingux ./dist/gcw0/gambatte.png ./dist/gcw0/manual.txt gambatte-opendingux-r572u3-$BDAT.opk -all-root -no-xattrs -noappend -no-exports | ||
|
||
echo "cd gambatte_sdl && scons -c" | ||
(cd gambatte_sdl && scons -c) | ||
echo "cd libgambatte && scons -c" | ||
(cd libgambatte && scons -c) | ||
echo "rm -f *gambatte*/config.log" | ||
rm -f *gambatte*/config.log | ||
echo "rm -rf *gambatte*/.scon*" | ||
rm -rf *gambatte*/.scon* | ||
find . -type f -iname \*.o -delete | ||
find . -type f -iname gambatte_sdl -delete | ||
|
||
find . -type f -iname gambatte.opendingux -delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
#define BUILDDATE "20191124-160457" | ||
#define BUILDDATE "20200111-133838" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.