2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 14:27:42 +00:00

FRME bug fixes and shader adjustments

This commit is contained in:
Jack Andersen
2017-01-29 18:16:20 -10:00
parent 1fbd08b7c6
commit 83176b41a9
39 changed files with 424 additions and 179 deletions

View File

@@ -24,7 +24,7 @@ class CSaveableState
protected:
CDrawStringOptions x0_drawStrOpts;
TLockedToken<CRasterFont> x48_font;
std::vector<CTextColor> x54_;
std::vector<CTextColor> x54_colors;
std::vector<bool> x64_colorOverrides;
float x74_lineSpacing = 1.f;
s32 x78_extraLineSpace = 0;
@@ -35,9 +35,11 @@ protected:
public:
CSaveableState()
{
x54_.resize(3, zeus::CColor::skBlack);
x54_colors.resize(3, zeus::CColor::skBlack);
x64_colorOverrides.resize(16);
}
bool IsFinishedLoading() const;
};
}