mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
parent
272f02e001
commit
00ce6ac98d
3
configure
vendored
3
configure
vendored
@ -985,6 +985,7 @@ case $_host_os in
|
|||||||
;;
|
;;
|
||||||
mint*)
|
mint*)
|
||||||
DEFINES="$DEFINES -DUNIX -DSYSTEM_NOT_SUPPORTING_D_TYPE"
|
DEFINES="$DEFINES -DUNIX -DSYSTEM_NOT_SUPPORTING_D_TYPE"
|
||||||
|
LIBS="$LIBS -lsocket"
|
||||||
;;
|
;;
|
||||||
amigaos*)
|
amigaos*)
|
||||||
# TODO: anything to be added here?
|
# TODO: anything to be added here?
|
||||||
@ -1057,7 +1058,7 @@ if test -n "$_host"; then
|
|||||||
type_2_byte='short'
|
type_2_byte='short'
|
||||||
type_4_byte='long'
|
type_4_byte='long'
|
||||||
_ranlib=m68k-atari-mint-ranlib
|
_ranlib=m68k-atari-mint-ranlib
|
||||||
_ar=m68k-atari-mint-ar
|
_ar="m68k-atari-mint-ar cru"
|
||||||
;;
|
;;
|
||||||
i586-mingw32msvc)
|
i586-mingw32msvc)
|
||||||
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
|
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
#include "sound/fmopl.h"
|
#include "sound/fmopl.h"
|
||||||
|
|
||||||
#if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined(GP2X) || defined (__MAEMO__) || defined(__DS__)
|
#if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined(GP2X) || defined (__MAEMO__) || defined(__DS__) || defined (__MINT__)
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -1171,7 +1171,7 @@ FM_OPL *makeAdlibOPL(int rate) {
|
|||||||
// We need to emulate one YM3812 chip
|
// We need to emulate one YM3812 chip
|
||||||
int env_bits = FMOPL_ENV_BITS_HQ;
|
int env_bits = FMOPL_ENV_BITS_HQ;
|
||||||
int eg_ent = FMOPL_EG_ENT_HQ;
|
int eg_ent = FMOPL_EG_ENT_HQ;
|
||||||
#if defined (_WIN32_WCE) || defined(__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined (GP2X) || defined(__MAEMO__) || defined(__DS__)
|
#if defined (_WIN32_WCE) || defined(__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined (GP2X) || defined(__MAEMO__) || defined(__DS__) || defined (__MINT__)
|
||||||
if (ConfMan.hasKey("FM_high_quality") && ConfMan.getBool("FM_high_quality")) {
|
if (ConfMan.hasKey("FM_high_quality") && ConfMan.getBool("FM_high_quality")) {
|
||||||
env_bits = FMOPL_ENV_BITS_HQ;
|
env_bits = FMOPL_ENV_BITS_HQ;
|
||||||
eg_ent = FMOPL_EG_ENT_HQ;
|
eg_ent = FMOPL_EG_ENT_HQ;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user