mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2025-02-25 15:43:34 +01:00
removed useless HW_DOL define
This commit is contained in:
parent
cab4ecba99
commit
aae753a9e7
@ -27,7 +27,7 @@ INCLUDES := source source/m68k source/z80 source/sound source/ntsc source/input_
|
||||
# options for code generation
|
||||
#---------------------------------------------------------------------------------
|
||||
|
||||
CFLAGS = -O3 -fomit-frame-pointer --param large-function-growth=800 --param inline-unit-growth=200 -Wall -Winline -Wno-strict-aliasing $(MACHDEP) $(INCLUDE) -DUSE_16BPP_RENDERING -DALT_RENDERER -DNGC -DHW_DOL
|
||||
CFLAGS = -O3 -fomit-frame-pointer --param large-function-growth=800 --param inline-unit-growth=200 -Wall -Winline -Wno-strict-aliasing $(MACHDEP) $(INCLUDE) -DUSE_16BPP_RENDERING -DALT_RENDERER -DNGC
|
||||
CXXFLAGS = $(CFLAGS)
|
||||
|
||||
LDFLAGS = $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
||||
|
@ -61,10 +61,10 @@ static u8 SysArea[CARD_WORKAREA] ATTRIBUTE_ALIGN (32);
|
||||
static int CardMount(int slot)
|
||||
{
|
||||
int tries = 0;
|
||||
#if defined(HW_DOL)
|
||||
*(unsigned long *) (0xCC006800) |= 1 << 13; /*** Disable Encryption ***/
|
||||
#elif defined(HW_RVL)
|
||||
#ifdef HW_RVL
|
||||
*(unsigned long *) (0xCD006800) |= 1 << 13; /*** Disable Encryption ***/
|
||||
#else
|
||||
*(unsigned long *) (0xCC006800) |= 1 << 13; /*** Disable Encryption ***/
|
||||
#endif
|
||||
while (tries < 10)
|
||||
{
|
||||
|
@ -41,10 +41,10 @@
|
||||
#define _GC_INPUT_H_
|
||||
|
||||
/* max. supported inputs */
|
||||
#ifdef HW_DOL
|
||||
#define MAX_INPUTS 4
|
||||
#else
|
||||
#ifdef HW_RVL
|
||||
#define MAX_INPUTS 8
|
||||
#else
|
||||
#define MAX_INPUTS 4
|
||||
#endif
|
||||
|
||||
/* Configurable keys */
|
||||
|
Loading…
x
Reference in New Issue
Block a user