mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-30 07:10:15 +00:00
SmallString: Fix size bug in assign(SmallStringBase&&)
This commit is contained in:
parent
a31d67921b
commit
9ffded0e73
@ -460,7 +460,7 @@ void SmallStringBase::assign(SmallStringBase&& move)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
assign(move.m_buffer, move.m_buffer_size);
|
assign(move.m_buffer, move.m_length);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user