mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
EnrichedString: Fix uninitialized variable m_default_length
This commit is contained in:
parent
1892ff3c0d
commit
a1da9caecf
1 changed files with 1 additions and 1 deletions
|
@ -98,5 +98,5 @@ private:
|
||||||
irr::video::SColor m_background;
|
irr::video::SColor m_background;
|
||||||
// This variable defines the length of the default-colored text.
|
// This variable defines the length of the default-colored text.
|
||||||
// Change this to a std::vector if an "end coloring" tag is wanted.
|
// Change this to a std::vector if an "end coloring" tag is wanted.
|
||||||
size_t m_default_length;
|
size_t m_default_length = 0;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue