mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-13 17:48:10 +08:00
always use internal fluidsynth for mingw builds
This commit is contained in:
@@ -65,6 +65,6 @@ pacman -S --needed --noconfirm mingw-w64-x86_64-libslirp &>/dev/null
|
||||
echo Compiling DOSBox-X
|
||||
chmod +x configure
|
||||
# FIXME: I would like MinGW builds to enable the debugger, eventually
|
||||
./configure --enable-core-inline --enable-d3d9 --enable-d3d-shaders --prefix=/usr "$@" || exit 1
|
||||
./configure --enable-core-inline --enable-d3d9 --enable-d3d-shaders --disable-libfluidsynth --prefix=/usr "$@" || exit 1
|
||||
make -j3 || exit 1
|
||||
|
||||
|
@@ -63,6 +63,6 @@ pacman -S --needed --noconfirm mingw-w64-x86_64-libslirp &>/dev/null
|
||||
echo Compiling DOSBox-X
|
||||
chmod +x configure
|
||||
# FIXME: I would like MinGW builds to enable the debugger, eventually
|
||||
./configure --enable-core-inline --enable-d3d9 --enable-d3d-shaders --prefix=/usr --enable-sdl2 "$@" || exit 1
|
||||
./configure --enable-core-inline --enable-d3d9 --enable-d3d-shaders --disable-libfluidsynth --prefix=/usr --enable-sdl2 "$@" || exit 1
|
||||
make -j3 || exit 1
|
||||
|
||||
|
@@ -60,6 +60,6 @@ pacman -S --needed --noconfirm mingw-w64-x86_64-libslirp &>/dev/null
|
||||
echo Compiling DOSBox-X
|
||||
chmod +x configure
|
||||
# FIXME: I would like MinGW builds to enable the debugger, eventually
|
||||
./configure --enable-core-inline --enable-force-menu-sdldraw --enable-d3d9 --enable-d3d-shaders --prefix=/usr "$@" || exit 1
|
||||
./configure --enable-core-inline --enable-force-menu-sdldraw --enable-d3d9 --enable-d3d-shaders --disable-libfluidsynth --prefix=/usr "$@" || exit 1
|
||||
make -j3 || exit 1
|
||||
|
||||
|
@@ -11869,14 +11869,14 @@ bool help_command_callback(DOSBoxMenu * const /*menu*/, DOSBoxMenu::item * const
|
||||
#if defined(C_SDL2)
|
||||
int x=-1, y=-1;
|
||||
#endif
|
||||
if (!GFX_IsFullscreen()) {
|
||||
if (!GFX_IsFullscreen()&&!window_was_maximized) {
|
||||
switchfs=true;
|
||||
#if defined(C_SDL2)
|
||||
SDL_GetWindowPosition(sdl.window, &x, &y);
|
||||
#endif
|
||||
GFX_SwitchFullScreen();
|
||||
toscale=false;
|
||||
}
|
||||
toscale=false;
|
||||
helpcmd = menuitem->get_name().substr(8);
|
||||
GUI_Shortcut(36);
|
||||
toscale=true;
|
||||
|
Reference in New Issue
Block a user