various fixes

This commit is contained in:
CaH4e3 2013-09-19 18:37:53 +00:00
parent 74cfde363f
commit e59e6d35d6
6 changed files with 7 additions and 7 deletions

View File

@ -30,7 +30,7 @@ static SFORMAT StateRegs[] =
static void Sync(void) {
// uint32 bbank = (bank & 0x18) >> 1;
uint32 bbank = ((bank & 0x10) >> 2) | (bank & 8); // some dumps have bbanks swapped, if swap commands,
uint32 bbank = ((bank & 0x10) >> 2) | (bank & 8); // some dumps have bbanks swapped, if swap commands,
// then all roms can be played, but with some swapped
// games in menu. if not, some dumps are unplayable
// make hard dump for both cart types to check

View File

@ -129,7 +129,7 @@ static DECLFW(WriteEXP)
{
uint32 addr = A;
uint8 value = V;
if (addr >= 05000)
if (addr >= 0x5000)
reg = value & 0x81;
}

View File

@ -335,7 +335,7 @@ static void makeDphaseARTable(void) {
dphaseARTable[AR][Rks] = 0; /*EG_DP_WIDTH;*/
break;
default:
dphaseARTable[AR][Rks] = rate_adjust((3 * (RL + 4) << (RM + 1)));
dphaseARTable[AR][Rks] = rate_adjust(3 * (RL + 4) << (RM + 1));
break;
}
}

View File

@ -190,7 +190,7 @@ int FindAsText;
int FindDirectionUp;
char FindTextBox[60];
uint32 temp_offset;
int temp_offset;
extern iNES_HEADER head;
@ -918,7 +918,7 @@ void InputData(char *input){
char inputc;
//char str[100];
//mbg merge 7/18/06 added cast:
data = (uint8*)malloc(strlen(input)); //it can't be larger than the input string, so use that as the size
data = (uint8 *)malloc(strlen(input) + 1); //it can't be larger than the input string, so use that as the size
for(i = 0;input[i] != 0;i++){
if(!EditingText){

View File

@ -248,7 +248,7 @@ size_t EMUFILE::read8le(u8* val)
u8 EMUFILE::read8le()
{
u8 temp;
u8 temp = 0;
fread(&temp,1);
return temp;
}

View File

@ -170,7 +170,7 @@ void FCEU_PutImage(void)
{
char nameo[512];
strcpy(nameo,FCEUI_GetSnapshotAsName().c_str());
if (nameo)
if (nameo[0])
{
SaveSnapshot(nameo);
FCEU_DispMessage("Snapshot Saved.",0);