mirror of
https://github.com/processing/processing4.git
synced 2026-02-11 09:39:19 +01:00
working on opengl and getting things straightened out
This commit is contained in:
@@ -332,11 +332,16 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
// always shove out the mesage, since it might not fall under
|
||||
// the same setup as we're expecting
|
||||
System.err.print(s);
|
||||
//System.err.println("[" + s.length() + "] " + s);
|
||||
System.err.flush();
|
||||
|
||||
// if s.length <=2, ignore it because that probably means
|
||||
// that it's just the platform line-terminators.
|
||||
if (s.length() < 2) return;
|
||||
//if (s.length() < 2) return;
|
||||
|
||||
// annoying, because it seems as though the terminators
|
||||
// aren't being sent properly
|
||||
//System.err.println(s);
|
||||
|
||||
//if (newMessage && s.length() > 2) {
|
||||
if (newMessage) {
|
||||
|
||||
Reference in New Issue
Block a user