1#!/bin/sh
2
3# Make sure any extra libs not in the firmware are pulled in.
4LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:../lib
5export LD_LIBRARY_PATH
6
7# Ensure we have a folder to store save games on the SD card.
8mkdir saves
9
10# make a runtime dir, just incase it creates anything in CWD
11mkdir runtime
12cd runtime
13
14../bin/scummvm --fullscreen  --gfx-mode=2x --config=../scummvm.config  --themepath=../data
15