Corrected constructor cast method name

Changed `float[] parseByte(byte[])` to `float[] parseFloat(byte[])`
This commit is contained in:
Jakub Valtar
2014-08-11 01:56:16 +02:00
parent 8cd54e52ab
commit fcd3ff99cb

View File

@@ -9635,7 +9635,7 @@ public class PApplet extends Applet
}
*/
static final public float[] parseByte(byte what[]) {
static final public float[] parseFloat(byte what[]) {
float floaties[] = new float[what.length];
for (int i = 0; i < what.length; i++) {
floaties[i] = what[i];