Skip to content

Commit 9cd44c1

Browse files
committed
Update JRubyArt.pde
1 parent f7061c9 commit 9cd44c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

samples/JRubyArt/JRubyArt.pde

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ boolean acceptOver = false;
1818
boolean noJruby = false;
1919
boolean selected = false;
2020
boolean eightOne = false;
21-
String jruby = "true";
21+
String jruby = "\"true\"";
2222

2323
void setup() {
2424
size(600, 200);
@@ -35,8 +35,8 @@ void setup() {
3535
: home + separator + "My Documents" + separator + "sketchbook";
3636
processingRoot = home + separator + "processing-3.1.1";
3737
} else {
38-
sketchbookPath = home + separator + "sketchbook";
39-
processingRoot = home + separator + "processing-3.1.1";
38+
sketchbookPath = "\"" + home + separator + "sketchbook" + "\"";
39+
processingRoot = "\"" + home + separator + "processing-3.1.1" + "\"";
4040
}
4141
rectColor = color(140);
4242
rectColor2 = color(140);

0 commit comments

Comments
 (0)