Merge pull request #1049 from rohit-n/extra-semicolon

Remove extra semicolons at the ends of some lines.
This commit is contained in:
Pierre Bourdon 2014-09-10 19:10:55 +02:00
commit eea9be6dc1
3 changed files with 3 additions and 3 deletions

View File

@ -389,7 +389,7 @@ void SCoreStartupParameter::CheckMemcardPath(std::string& memcardPath, std::stri
{
// filename has region, but it's not == gameRegion
// Just set the correct filename, the EXI Device will create it if it doesn't exist
memcardPath = filename.replace(filename.size()-ext.size(), ext.size(), ext);;
memcardPath = filename.replace(filename.size()-ext.size(), ext.size(), ext);
}
}
}

View File

@ -77,7 +77,7 @@ void MemoryCheckDlg::OnOK(wxCommandEvent& event)
bool OnRead = m_pReadFlag->GetValue();
bool OnWrite = m_pWriteFlag->GetValue();
bool Log = m_log_flag->GetValue();
bool Break = m_break_flag->GetValue();;
bool Break = m_break_flag->GetValue();
u32 StartAddress, EndAddress;
bool EndAddressOK = EndAddressString.Len() &&

View File

@ -243,7 +243,7 @@ bool ProgramShaderCache::CompileShader(SHADER& shader, const char* vcode, const
return false;
}
GLuint pid = shader.glprogid = glCreateProgram();;
GLuint pid = shader.glprogid = glCreateProgram();
glAttachShader(pid, vsid);
glAttachShader(pid, psid);