From 07c0c67b88160b51e61c5c1d2b9b602daafa44a9 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sat, 17 Aug 2019 04:38:10 -0400 Subject: [PATCH] Fix UV# --- Grafreed.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Grafreed.java b/Grafreed.java index 77a2921..99344db 100644 --- a/Grafreed.java +++ b/Grafreed.java @@ -676,7 +676,8 @@ public static void main(String argv[]) { - String osArch = System.getProperty("os.arch"); + String osArch = System.getProperty("os.arch"); + if (Globals.DEBUG) System.out.println("os.arch = " + osArch); if (argv.length == 0) @@ -928,7 +929,7 @@ grafreed.universe = new cGroup(); grafreed.universe.name = "Grafreed"; grafreed.universe.material = new cMaterial(); - grafreed.universe.skyboxname = "cubemaps/penguins-skyboxes/tropic"; + grafreed.universe.skyboxname = "cubemaps/penguins-skyboxes/yonder"; grafreed.universe.skyboxext = "jpg"; // theApplet3D.universe.textures = CameraPane.DEFAULT_TEXTURE; -- Gitblit v1.6.2