Quantcast
Channel: Another World (RAW) ported to Haiku
Viewing all articles
Browse latest Browse all 19

Another World (RAW) ported to Haiku

$
0
0

Hi @luca91

The 32-bit version has a problem:

The bash startup script looks for the application “neo-raw”, in 32 bits it is called “neo-raw-x86”. I have copied and modified the script and it works fine with that executable, but I guess that not everyone looks at the script file or launch some things from Terminal :slight_smile:

Maybe creating an alias (end-user) or editing the recipe are good options for the distribution. Or create the verification in script:

runapp=""
FILE=/boot/system/bin/neo-raw
if [ -f "$FILE" ]; then
    runapp="/boot/system/bin/neo-raw"
else
    runapp="/boot/system/bin/neo-raw-x86"
fi

"$runapp" --datapath=$DATA_PATH --savepath=$SAVE_PATH $@ &

# Something like this i supose

Greetings and thanks for one of my favorite games!

Read full topic


Viewing all articles
Browse latest Browse all 19

Trending Articles