Proposed fix for issue #556

The issue is documented here.

The affected files are:

/trunk/engine/src/core/com/jme3/app/StatsAppState.java
and
/branches/gradle-restructure/jme3-core/src/main/java/com/jme3/app/StatsAppState.java

And here’s the patch/diff:

--- Base (BASE)
+++ Locally Modified (Based On LOCAL)
@@ -81,7 +81,7 @@
      *  is because several applications expect to directly access
      *  fpsText... unfortunately.
      */
-    void setFont( BitmapFont guiFont ) {
+    public void setFont( BitmapFont guiFont ) {
         this.guiFont = guiFont;
         this.fpsText = new BitmapText(guiFont, false);
     }

OK for me to commit?

2 Likes

Yeah, it’s fine with me.

1 Like

go ahead

1 Like

Committed!

1 Like