make hints[] no longer static

This commit is contained in:
benfry
2004-11-08 20:20:19 +00:00
parent 4d5affe1b0
commit 4727d62d61
2 changed files with 5 additions and 3 deletions

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;
}
//}
// ........................................................