remove unnecessary to_string()

This commit is contained in:
Anthony Miles 2019-05-26 21:32:36 +12:00
parent 84fd493011
commit 8cf90d7604
1 changed files with 1 additions and 1 deletions

View File

@ -735,7 +735,7 @@ static void VshWriteParameter(VSH_IMD_PARAMETER *pParameter,
// Only display the offset if it's not 0.
if(pParameter->Parameter.Address)
{
*pDisassembly << "[a0.x+" << std::to_string(pParameter->Parameter.Address) << "]";
*pDisassembly << "[a0.x+" << pParameter->Parameter.Address << "]";
}
else
{