mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
d256f069a5
-Fixed tiny build (missing s11c_bg_device) and unused lambda capture in emu/rendlay.cpp.
12 lines
181 B
Bash
12 lines
181 B
Bash
#! /usr/bin/env bash
|
|
# Copyright (C) 2017 Expat development team
|
|
# Licensed under the MIT license
|
|
|
|
case "@host@" in
|
|
*-mingw*)
|
|
exec wine "$@"
|
|
;;
|
|
*)
|
|
exec "$@"
|
|
;;
|
|
esac
|