mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 12:51:05 +08:00
Assign value to m_stream in Font::operator= on android
This commit is contained in:
parent
e77e680cad
commit
23ea17eab7
@ -456,6 +456,10 @@ Font& Font::operator =(const Font& right)
|
|||||||
std::swap(m_pages, temp.m_pages);
|
std::swap(m_pages, temp.m_pages);
|
||||||
std::swap(m_pixelBuffer, temp.m_pixelBuffer);
|
std::swap(m_pixelBuffer, temp.m_pixelBuffer);
|
||||||
|
|
||||||
|
#ifdef SFML_SYSTEM_ANDROID
|
||||||
|
std::swap(m_stream, temp.m_stream);
|
||||||
|
#endif
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user