2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 11:47:43 +00:00

Merge pull request #245 from lioncash/drawstring

CDrawStringOptions: Resize vector within constructor
This commit is contained in:
2020-03-18 01:04:08 -04:00
committed by GitHub

View File

@@ -18,7 +18,7 @@ class CDrawStringOptions {
std::vector<CTextColor> x4_colors;
public:
CDrawStringOptions() { x4_colors.resize(16); }
CDrawStringOptions() : x4_colors(16) {}
};
} // namespace urde