mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
raiden2 fix (nw)
This commit is contained in:
parent
d2fba8eea6
commit
a485340223
@ -3240,6 +3240,7 @@ files {
|
||||
MAME_DIR .. "src/mame/drivers/raiden2.cpp",
|
||||
MAME_DIR .. "src/mame/includes/raiden2.h",
|
||||
MAME_DIR .. "src/mame/machine/r2crypt.cpp",
|
||||
MAME_DIR .. "src/mame/machine/r2crypt.h",
|
||||
MAME_DIR .. "src/mame/machine/raiden2cop.cpp",
|
||||
MAME_DIR .. "src/mame/machine/raiden2cop.h",
|
||||
MAME_DIR .. "src/mame/drivers/r2dx_v33.cpp",
|
||||
|
@ -67,6 +67,7 @@ Then it puts settings at 0x9e08 and 0x9e0a (bp 91acb)
|
||||
#include "machine/eepromser.h"
|
||||
#include "sound/okim6295.h"
|
||||
#include "includes/raiden2.h"
|
||||
#include "machine/r2crypt.h"
|
||||
|
||||
|
||||
class r2dx_v33_state : public raiden2_state
|
||||
|
@ -139,7 +139,7 @@ Protection Notes:
|
||||
#include "machine/eepromser.h"
|
||||
#include "sound/okim6295.h"
|
||||
#include "includes/raiden2.h"
|
||||
|
||||
#include "machine/r2crypt.h"
|
||||
|
||||
void raiden2_state::machine_start()
|
||||
{
|
||||
|
@ -156,7 +156,3 @@ public:
|
||||
protected:
|
||||
virtual void machine_start() override;
|
||||
};
|
||||
|
||||
/*----------- defined in machine/r2crypt.c -----------*/
|
||||
void raiden2_decrypt_sprites(running_machine &machine);
|
||||
void zeroteam_decrypt_sprites(running_machine &machine);
|
||||
|
7
src/mame/machine/r2crypt.h
Normal file
7
src/mame/machine/r2crypt.h
Normal file
@ -0,0 +1,7 @@
|
||||
// license:LGPL-2.1+
|
||||
// copyright-holders:Olivier Galibert, Angelo Salese, David Haywood, Tomasz Slanina
|
||||
|
||||
#include "machine/seibuspi.h"
|
||||
|
||||
void raiden2_decrypt_sprites(running_machine &machine);
|
||||
void zeroteam_decrypt_sprites(running_machine &machine);
|
Loading…
Reference in New Issue
Block a user