Fixed some doubled semicolons

This commit is contained in:
adrian17 2013-08-25 19:43:18 +02:00
parent 554ca84556
commit 06a015983a
3 changed files with 4 additions and 4 deletions

View file

@ -600,7 +600,7 @@ void PSPOskDialog::RemoveKorean()
else
{
i_level = 1;
inputChars += kor_cons[i_value[0]];;
inputChars += kor_cons[i_value[0]];
}
}
else if(i_level == 3)

View file

@ -253,7 +253,7 @@ void ElfReader::LoadRelocations2(int rel_seg)
buf += 2;
rel_base += rel_offset;
}else if((flag&0x06)==0x04){
rel_base = buf[0] | (buf[1]<<8) | (buf[2]<<16) | (buf[3]<<24);;
rel_base = buf[0] | (buf[1]<<8) | (buf[2]<<16) | (buf[3]<<24);
buf += 4;
}else{
ERROR_LOG_REPORT(LOADER, "Rel2: invalid relocat size flag! %x", flag);

View file

@ -73,7 +73,7 @@ namespace MIPSDis
{
int ft = _FT;
int fs = _FS;
int fd = _FD;;
int fd = _FD;
const char *name = MIPSGetName(op);
sprintf(out, "%s\t%s, %s, %s",name,FN(fd),FN(fs),FN(ft));
}
@ -81,7 +81,7 @@ namespace MIPSDis
void Dis_FPU2op(MIPSOpcode op, char *out)
{
int fs = _FS;
int fd = _FD;;
int fd = _FD;
const char *name = MIPSGetName(op);
sprintf(out, "%s\t%s, %s",name,FN(fd),FN(fs));
}