reorder SceneResources field init
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user