diff --git a/OpenRCT2.xcodeproj/xcshareddata/xcschemes/PaintTest.xcscheme b/OpenRCT2.xcodeproj/xcshareddata/xcschemes/PaintTest.xcscheme new file mode 100644 index 0000000000..bd9963e139 --- /dev/null +++ b/OpenRCT2.xcodeproj/xcshareddata/xcschemes/PaintTest.xcscheme @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PaintTest/main.c b/PaintTest/main.c index a952233705..728c6b7127 100644 --- a/PaintTest/main.c +++ b/PaintTest/main.c @@ -676,6 +676,10 @@ int main(int argc, const char *argv[]) { bool success = true; for (int i = 0; i < 91; i++) { + if (!rideIsImplemented(i)) { + continue; + } + if (!testRide(i)) { success = false; }