diff --git a/Core/Dialog/PSPOskDialog.cpp b/Core/Dialog/PSPOskDialog.cpp index ba0b823bd4..bf75a483bb 100755 --- a/Core/Dialog/PSPOskDialog.cpp +++ b/Core/Dialog/PSPOskDialog.cpp @@ -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) diff --git a/Core/ELF/ElfReader.cpp b/Core/ELF/ElfReader.cpp index d7af78c335..a2ae2faaa4 100644 --- a/Core/ELF/ElfReader.cpp +++ b/Core/ELF/ElfReader.cpp @@ -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); diff --git a/Core/MIPS/MIPSDis.cpp b/Core/MIPS/MIPSDis.cpp index d06eaae6dc..f94f75cba5 100644 --- a/Core/MIPS/MIPSDis.cpp +++ b/Core/MIPS/MIPSDis.cpp @@ -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)); }