aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-12-23 05:08:46 +0100
committerSven Gothel <[email protected]>2011-12-23 05:08:46 +0100
commit3f5d71f14506da21db29d050e685a482df47b5cc (patch)
treecebe1b73ca8d40b5b09caf61fc7a3a86d0c1734a /src/newt
parent04707d3c1c628d6bf493d6916621d5e34dfefc30 (diff)
Fix regression of commit: 3f5df93484a2ea97c6e51a717f05d9ddcec64d84 (compile error, private field access)
Diffstat (limited to 'src/newt')
-rw-r--r--src/newt/classes/jogamp/newt/driver/broadcom/egl/Screen.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newt/classes/jogamp/newt/driver/broadcom/egl/Screen.java b/src/newt/classes/jogamp/newt/driver/broadcom/egl/Screen.java
index 850f56c6d..86a27a407 100644
--- a/src/newt/classes/jogamp/newt/driver/broadcom/egl/Screen.java
+++ b/src/newt/classes/jogamp/newt/driver/broadcom/egl/Screen.java
@@ -65,7 +65,7 @@ public class Screen extends jogamp.newt.ScreenImpl {
// Internals only
//
- private static final int fixedWidth = 1920; // FIXME
- private static final int fixedHeight = 1080; // FIXME
+ static final int fixedWidth = 1920; // FIXME
+ static final int fixedHeight = 1080; // FIXME
}