Merge pull request #1049 from rohit-n/extra-semicolon
Remove extra semicolons at the ends of some lines.
This commit is contained in:
commit
eea9be6dc1
|
@ -389,7 +389,7 @@ void SCoreStartupParameter::CheckMemcardPath(std::string& memcardPath, std::stri
|
||||||
{
|
{
|
||||||
// filename has region, but it's not == gameRegion
|
// filename has region, but it's not == gameRegion
|
||||||
// Just set the correct filename, the EXI Device will create it if it doesn't exist
|
// 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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,7 +77,7 @@ void MemoryCheckDlg::OnOK(wxCommandEvent& event)
|
||||||
bool OnRead = m_pReadFlag->GetValue();
|
bool OnRead = m_pReadFlag->GetValue();
|
||||||
bool OnWrite = m_pWriteFlag->GetValue();
|
bool OnWrite = m_pWriteFlag->GetValue();
|
||||||
bool Log = m_log_flag->GetValue();
|
bool Log = m_log_flag->GetValue();
|
||||||
bool Break = m_break_flag->GetValue();;
|
bool Break = m_break_flag->GetValue();
|
||||||
|
|
||||||
u32 StartAddress, EndAddress;
|
u32 StartAddress, EndAddress;
|
||||||
bool EndAddressOK = EndAddressString.Len() &&
|
bool EndAddressOK = EndAddressString.Len() &&
|
||||||
|
|
|
@ -243,7 +243,7 @@ bool ProgramShaderCache::CompileShader(SHADER& shader, const char* vcode, const
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
GLuint pid = shader.glprogid = glCreateProgram();;
|
GLuint pid = shader.glprogid = glCreateProgram();
|
||||||
|
|
||||||
glAttachShader(pid, vsid);
|
glAttachShader(pid, vsid);
|
||||||
glAttachShader(pid, psid);
|
glAttachShader(pid, psid);
|
||||||
|
|
Loading…
Reference in New Issue