Silenced a few warnings
git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@786 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
parent
e0aa92dee0
commit
65ab3000a4
|
@ -4770,8 +4770,6 @@ void gbEmulate(int ticksToStop)
|
||||||
tempgbWindowLine = 146;
|
tempgbWindowLine = 146;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wy = inUseRegister_WY;
|
|
||||||
|
|
||||||
if(register_LY >= inUseRegister_WY) {
|
if(register_LY >= inUseRegister_WY) {
|
||||||
|
|
||||||
if (tempgbWindowLine == -1)
|
if (tempgbWindowLine == -1)
|
||||||
|
|
|
@ -159,10 +159,10 @@ bool gbVerifyGsCode(const char *code)
|
||||||
if(!GBCHEAT_IS_HEX(code[i]))
|
if(!GBCHEAT_IS_HEX(code[i]))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
int address = GBCHEAT_HEX_VALUE(code[6]) << 12 |
|
/* int address = GBCHEAT_HEX_VALUE(code[6]) << 12 |
|
||||||
GBCHEAT_HEX_VALUE(code[7]) << 8 |
|
GBCHEAT_HEX_VALUE(code[7]) << 8 |
|
||||||
GBCHEAT_HEX_VALUE(code[4]) << 4 |
|
GBCHEAT_HEX_VALUE(code[4]) << 4 |
|
||||||
GBCHEAT_HEX_VALUE(code[5]);
|
GBCHEAT_HEX_VALUE(code[5]);*/
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1176,6 +1176,7 @@ mapperTAMA5 gbDataTAMA5 = {
|
||||||
0, // RAM Byte select
|
0, // RAM Byte select
|
||||||
0, // mapper command number
|
0, // mapper command number
|
||||||
0, // mapper last command;
|
0, // mapper last command;
|
||||||
|
{
|
||||||
0, // commands 0x0
|
0, // commands 0x0
|
||||||
0, // commands 0x1
|
0, // commands 0x1
|
||||||
0, // commands 0x2
|
0, // commands 0x2
|
||||||
|
@ -1191,7 +1192,8 @@ mapperTAMA5 gbDataTAMA5 = {
|
||||||
0, // commands 0xc
|
0, // commands 0xc
|
||||||
0, // commands 0xd
|
0, // commands 0xd
|
||||||
0, // commands 0xe
|
0, // commands 0xe
|
||||||
0, // commands 0xf
|
0 // commands 0xf
|
||||||
|
},
|
||||||
0, // register
|
0, // register
|
||||||
0, // timer clock latch
|
0, // timer clock latch
|
||||||
0, // timer clock register
|
0, // timer clock register
|
||||||
|
@ -1288,8 +1290,8 @@ void mapperTAMA5RAM(u16 address, u8 value)
|
||||||
gbDataTAMA5.mapperCommands[gbDataTAMA5.mapperCommandNumber] = value;
|
gbDataTAMA5.mapperCommands[gbDataTAMA5.mapperCommandNumber] = value;
|
||||||
gbMemoryMap[0xa][0] = value;
|
gbMemoryMap[0xa][0] = value;
|
||||||
|
|
||||||
int test = gbDataTAMA5.mapperCommands[gbDataTAMA5.mapperCommandNumber & 0x0e] |
|
/* int test = gbDataTAMA5.mapperCommands[gbDataTAMA5.mapperCommandNumber & 0x0e] |
|
||||||
(gbDataTAMA5.mapperCommands[(gbDataTAMA5.mapperCommandNumber & 0x0e) +1]<<4);
|
(gbDataTAMA5.mapperCommands[(gbDataTAMA5.mapperCommandNumber & 0x0e) +1]<<4);*/
|
||||||
|
|
||||||
if ((gbDataTAMA5.mapperCommandNumber & 0xe) == 0) // Read Command !!!
|
if ((gbDataTAMA5.mapperCommandNumber & 0xe) == 0) // Read Command !!!
|
||||||
{
|
{
|
||||||
|
@ -1643,8 +1645,6 @@ void memoryUpdateMapMMM01()
|
||||||
// GameGenie ROM write registers
|
// GameGenie ROM write registers
|
||||||
void mapperGGROM(u16 address, u8 value)
|
void mapperGGROM(u16 address, u8 value)
|
||||||
{
|
{
|
||||||
int tmpAddress = 0;
|
|
||||||
|
|
||||||
switch(address & 0x6000) {
|
switch(address & 0x6000) {
|
||||||
case 0x0000: // RAM enable register
|
case 0x0000: // RAM enable register
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue