make hints[] no longer static

This commit is contained in:
benfry
2004-11-08 20:20:19 +00:00
parent 687ce7afcc
commit 3f4121119a
2 changed files with 5 additions and 3 deletions
+3 -3
View File
@@ -53,10 +53,10 @@ public class PGraphics extends PImage
// needs to happen before background() is called
// and resize.. so it's gotta be outside
static boolean hints[] = new boolean[HINT_COUNT];
static {
boolean hints[] = new boolean[HINT_COUNT];
//static {
//hints[NEW_GRAPHICS] = true;
}
//}
// ........................................................
+2
View File
@@ -2,6 +2,8 @@
X make m00, m01 etc public
X hack to make loadImage() work
X cache settings are ignored, may be slow as hell
X make hints[] no longer static
X they weren't properly resetting
_ loadImage() is mostly broken