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:
bgk 2008-10-27 20:06:04 +00:00
parent e0aa92dee0
commit 65ab3000a4
3 changed files with 22 additions and 24 deletions

View File

@ -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)

View File

@ -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;
} }

View File

@ -1176,22 +1176,24 @@ 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 0x1 0, // commands 0x0
0, // commands 0x2 0, // commands 0x1
0, // commands 0x3 0, // commands 0x2
0, // commands 0x4 0, // commands 0x3
0, // commands 0x5 0, // commands 0x4
0, // commands 0x6 0, // commands 0x5
0, // commands 0x7 0, // commands 0x6
0, // commands 0x8 0, // commands 0x7
0, // commands 0x9 0, // commands 0x8
0, // commands 0xa 0, // commands 0x9
0, // commands 0xb 0, // commands 0xa
0, // commands 0xc 0, // commands 0xb
0, // commands 0xd 0, // commands 0xc
0, // commands 0xe 0, // commands 0xd
0, // commands 0xf 0, // commands 0xe
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;