mirror of https://github.com/AxioDL/metaforce.git
CGuiPane: Make static resolving of virtual function in ctor explicit
virtual functions statically resolve in the constructor and destructor. This makes it explicit to the user that this static resolving behavior is indeed what is intended
This commit is contained in:
parent
665b4f496d
commit
b3d6901f56
|
@ -4,7 +4,7 @@ namespace urde {
|
|||
|
||||
CGuiPane::CGuiPane(const CGuiWidgetParms& parms, const zeus::CVector2f& dim, const zeus::CVector3f& scaleCenter)
|
||||
: CGuiWidget(parms), xb8_dim(dim), xc8_scaleCenter(scaleCenter) {
|
||||
InitializeBuffers();
|
||||
CGuiPane::InitializeBuffers();
|
||||
}
|
||||
|
||||
void CGuiPane::ScaleDimensions(const zeus::CVector3f& scale) {
|
||||
|
|
Loading…
Reference in New Issue