mirror of
https://github.com/holub/mame
synced 2025-06-02 02:49:44 +03:00
Renamed GAME_CAN_SHARE_ROMS to GAME_SHARE_ROMS (sounds more logical)
This commit is contained in:
parent
a8aedb92b0
commit
f058d3f6e0
@ -45,7 +45,7 @@
|
|||||||
#define GAME_REQUIRES_ARTWORK 0x00004000 /* the driver requires external artwork for key elements of the game */
|
#define GAME_REQUIRES_ARTWORK 0x00004000 /* the driver requires external artwork for key elements of the game */
|
||||||
#define GAME_UNOFFICIAL 0x00008000 /* unofficial hardware change */
|
#define GAME_UNOFFICIAL 0x00008000 /* unofficial hardware change */
|
||||||
#define GAME_NO_SOUND_HW 0x00010000 /* sound hardware not available */
|
#define GAME_NO_SOUND_HW 0x00010000 /* sound hardware not available */
|
||||||
#define GAME_CAN_SHARE_ROMS 0x00020000 /* can share roms with other games (different hardware same roms) */
|
#define GAME_SHARE_ROMS 0x00020000 /* share roms with other games (different hardware same roms) */
|
||||||
|
|
||||||
|
|
||||||
/* ----- flags to return from video_update ----- */
|
/* ----- flags to return from video_update ----- */
|
||||||
|
@ -443,7 +443,7 @@ static int validate_roms(int drivnum, const machine_config *config, region_array
|
|||||||
int error = FALSE;
|
int error = FALSE;
|
||||||
|
|
||||||
/* check for duplicate ROM entries */
|
/* check for duplicate ROM entries */
|
||||||
if (driver->rom != NULL && (driver->flags & GAME_NO_STANDALONE) == 0 && (driver->flags & GAME_CAN_SHARE_ROMS) == 0)
|
if (driver->rom != NULL && (driver->flags & GAME_NO_STANDALONE) == 0 && (driver->flags & GAME_SHARE_ROMS) == 0)
|
||||||
{
|
{
|
||||||
char romaddr[20];
|
char romaddr[20];
|
||||||
sprintf(romaddr, "%p", driver->rom);
|
sprintf(romaddr, "%p", driver->rom);
|
||||||
|
Loading…
Reference in New Issue
Block a user