mirror of
https://github.com/holub/mame
synced 2025-10-06 00:54:22 +03:00
Move some includes around to fix compile errors on OSX; if this breaks any other environments then feel free to revert this. (nw)
This commit is contained in:
parent
912ce2ed9c
commit
dedb5c5d22
@ -21,6 +21,8 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
// some cleanups for Solaris for things defined in stdlib.h
|
// some cleanups for Solaris for things defined in stdlib.h
|
||||||
#ifdef SDLMAME_SOLARIS
|
#ifdef SDLMAME_SOLARIS
|
||||||
#undef si_status
|
#undef si_status
|
||||||
|
@ -31,8 +31,8 @@
|
|||||||
|
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
|
|
||||||
#include "coco_cas.h"
|
|
||||||
#include "emu.h"
|
#include "emu.h"
|
||||||
|
#include "coco_cas.h"
|
||||||
|
|
||||||
#define COCO_WAVESAMPLES_HEADER (1.0)
|
#define COCO_WAVESAMPLES_HEADER (1.0)
|
||||||
#define COCO_WAVESAMPLES_TRAILER (1.0)
|
#define COCO_WAVESAMPLES_TRAILER (1.0)
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "emu.h"
|
||||||
#include "formats/cpis_dsk.h"
|
#include "formats/cpis_dsk.h"
|
||||||
#include "formats/basicdsk.h"
|
#include "formats/basicdsk.h"
|
||||||
|
|
||||||
|
@ -27,6 +27,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "emu.h"
|
||||||
#include "flopimg.h"
|
#include "flopimg.h"
|
||||||
#include "imageutl.h"
|
#include "imageutl.h"
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "emu.h"
|
||||||
#include "dim_dsk.h"
|
#include "dim_dsk.h"
|
||||||
#include "basicdsk.h"
|
#include "basicdsk.h"
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "emu.h"
|
||||||
#include "imageutl.h"
|
#include "imageutl.h"
|
||||||
#include "flopimg.h"
|
#include "flopimg.h"
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "emu.h"
|
||||||
#include "flopimg.h"
|
#include "flopimg.h"
|
||||||
|
|
||||||
struct imddsk_tag
|
struct imddsk_tag
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "emu.h"
|
||||||
#include "m20_dsk.h"
|
#include "m20_dsk.h"
|
||||||
#include "basicdsk.h"
|
#include "basicdsk.h"
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include "pasti_dsk.h"
|
|
||||||
#include "emu.h"
|
#include "emu.h"
|
||||||
|
#include "pasti_dsk.h"
|
||||||
|
|
||||||
// Pasti format supported using the documentation at
|
// Pasti format supported using the documentation at
|
||||||
// http://www.sarnau.info/atari:pasti_file_format
|
// http://www.sarnau.info/atari:pasti_file_format
|
||||||
|
@ -342,7 +342,6 @@ G: gun mania only, drives air soft gun (this game uses real BB bullet)
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "cdrom.h"
|
|
||||||
#include "cpu/psx/psx.h"
|
#include "cpu/psx/psx.h"
|
||||||
#include "machine/adc083x.h"
|
#include "machine/adc083x.h"
|
||||||
#include "machine/ataintf.h"
|
#include "machine/ataintf.h"
|
||||||
@ -361,6 +360,7 @@ G: gun mania only, drives air soft gun (this game uses real BB bullet)
|
|||||||
#include "sound/spu.h"
|
#include "sound/spu.h"
|
||||||
#include "sound/cdda.h"
|
#include "sound/cdda.h"
|
||||||
#include "video/psx.h"
|
#include "video/psx.h"
|
||||||
|
#include "cdrom.h"
|
||||||
|
|
||||||
#define VERBOSE_LEVEL ( 0 )
|
#define VERBOSE_LEVEL ( 0 )
|
||||||
|
|
||||||
|
@ -22,12 +22,15 @@
|
|||||||
// * Scroll views with content narrower than clipping area are flaky under Tiger - nothing I can do about this
|
// * Scroll views with content narrower than clipping area are flaky under Tiger - nothing I can do about this
|
||||||
|
|
||||||
|
|
||||||
|
// Workaround for Nil being re=defined in luabridge
|
||||||
|
#include "emu.h"
|
||||||
|
|
||||||
// standard Cocoa headers
|
// standard Cocoa headers
|
||||||
#include <AvailabilityMacros.h>
|
#include <AvailabilityMacros.h>
|
||||||
#import <Cocoa/Cocoa.h>
|
#import <Cocoa/Cocoa.h>
|
||||||
|
|
||||||
// MAME headers
|
// MAME headers
|
||||||
#include "emu.h"
|
//#include "emu.h"
|
||||||
#include "debug/debugvw.h"
|
#include "debug/debugvw.h"
|
||||||
#include "debug/debugcon.h"
|
#include "debug/debugcon.h"
|
||||||
#include "debug/debugcpu.h"
|
#include "debug/debugcpu.h"
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include <sstream>
|
||||||
#include "astring.h"
|
#include "astring.h"
|
||||||
#include "corefile.h"
|
#include "corefile.h"
|
||||||
#include "corestr.h"
|
#include "corestr.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user