diff exporters.pde @ 117:44a07b1c620d

Rename 'bool' -> 'boolean'.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 07 Jul 2018 03:22:38 +0300
parents 517348a7b543
children 55b0a77af602
line wrap: on
line diff
--- a/exporters.pde	Fri Jul 06 19:43:56 2018 +0300
+++ b/exporters.pde	Sat Jul 07 03:22:38 2018 +0300
@@ -42,7 +42,7 @@
 }
 
 
-bool mpImportFormat(byte[] fdata)
+boolean mpImportFormat(byte[] fdata)
 {
     int x, y, x2, y2, y3, head, xx, yy, yp, ad, valu;
     int p1, p2, p3;
@@ -388,7 +388,7 @@
 }
 
 
-byte[] mpExportMachinePRG(bool sorsa)
+byte[] mpExportMachinePRG(boolean sorsa)
 {
     // any common text headers
     String src = ";machine=" + str(machine) + " (" + g_name + ")\n";
@@ -945,7 +945,7 @@
 }
 
 
-bool mpImportFromImage(PImage image)
+boolean mpImportFromImage(PImage image)
 {
     if (image == null)
         return false;
@@ -1217,7 +1217,7 @@
 }
 
 
-PImage mpRenderImage(bool border)
+PImage mpRenderImage(boolean border)
 {
     PImage output;