#!/bin/dash
# 32-bit compatibility wrapper script for Fatdog64 710
export USE_ARCH=32

### launch command
if [ $# -ne 0 ]; then
	exec linux32 "$@"
else
	exec linux32 sh # otherwise linux32 will launch login shell and ignore our env above
fi
