#!/bin/bash

if test -z "$WINEDEBUG"; then
    export WINEDEBUG=-all
fi

# ARM 需要指定模拟器参数
if [ -f "/opt/deepin-wine8-stable/bin/init_emu_wow64.sh" ];then
    source "/opt/deepin-wine8-stable/bin/init_emu_wow64.sh"
fi

$EMU_CMD $EMU_ARGS /opt/deepin-wine8-stable/bin/wine "$@"
