mirror of https://github.com/pret/pokeemerald.git
Port over 9d96147bbf
This commit is contained in:
parent
919e7b4387
commit
aeceecea3d
|
@ -266,7 +266,7 @@ int AsmFile::ReadString(unsigned char* s)
|
|||
{
|
||||
m_pos += stringParser.ParseString(m_pos, s, length);
|
||||
}
|
||||
catch (std::runtime_error e)
|
||||
catch (std::runtime_error& e)
|
||||
{
|
||||
RaiseError(e.what());
|
||||
}
|
||||
|
|
|
@ -206,7 +206,7 @@ void CFile::TryConvertString()
|
|||
{
|
||||
m_pos += stringParser.ParseString(m_pos, s, length);
|
||||
}
|
||||
catch (std::runtime_error e)
|
||||
catch (std::runtime_error& e)
|
||||
{
|
||||
RaiseError(e.what());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue