JuanCarlosAragon / jmonkeyengine

Automatically exported from code.google.com/p/jmonkeyengine
0 stars 0 forks source link

mistake in GuiTrack.java #276

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
It's only a little mistake to be fixed.
At the following Constructor of the class 
com.jme3.cinematic.events.GuiTrack.java

 public GuiTrack(String screen, int initialDuration, LoopMode loopMode) {
        super(initialDuration, loopMode);
        this.screen = screen;
    }

the value "initialDuration" is an integer, but in the other constructor of this 
class and also in the super-constructor called by this constructor, this is a 
float-value!

Simple change this to float would fix this mistake.

Original issue reported on code.google.com by stadeld...@web.de on 23 Jan 2011 at 4:30

GoogleCodeExporter commented 8 years ago

Original comment by remy.bou...@gmail.com on 9 Feb 2011 at 10:16

GoogleCodeExporter commented 8 years ago
Right! thanks for reporting
Fixed in revision 6681
http://code.google.com/p/jmonkeyengine/source/detail?r=6681

Original comment by remy.bou...@gmail.com on 10 Feb 2011 at 8:47