reorder SceneResources field init

This commit is contained in:
Nick Fisher
2022-12-06 12:20:52 +08:00
parent 2e28f7e812
commit 4796667904

View File

@@ -69,7 +69,7 @@ namespace polyvox {
MorphAnimationStatus(float* frameData,
int numWeights,
int numFrames,
float frameLength) : frameData(frameData), numWeights(numWeights), numFrames(numFrames), frameLengthInMs(frameLength) {
float frameLength) : numFrames(numFrames), frameLengthInMs(frameLength), frameData(frameData), numWeights(numWeights) {
}
int frameIndex = -1;