1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-02 18:57:56 +00:00

minor Android fixes

This commit is contained in:
Zeno Rogue
2018-06-15 00:03:05 +02:00
parent d7d9f2e82d
commit 0054b09b5c
3 changed files with 14 additions and 2 deletions

View File

@@ -2,6 +2,17 @@
mkdir -p app/src/main/assets/sounds
cp ../sounds/* app/src/main/assets/sounds/
mkdir -p app/src/main/res/raw/
#for x in caves crossroads desert graveyard hell icyland jungle laboratory mirror rlyeh
#do cp ../music/hr3-$x.ogg app/src/main/res/raw/$x.ogg
#done
# make sure that language-data.cpp is generated
if [ ! -f ../language-data.cpp ]; then
echo "File language-data.cpp not found! Trying to compile and run langen"
cd ..
g++ langen.cpp -o langen
./langen > language-data.cpp
ls -l langen language-data.cpp
cd hyperroid
fi