mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fixed some doubled semicolons
This commit is contained in:
parent
554ca84556
commit
06a015983a
3 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue