From 8f6dcd3a6d05917d7677570c8235e75df36502d8 Mon Sep 17 00:00:00 2001 From: kappa1 Date: Fri, 13 May 2011 19:16:34 +0000 Subject: [PATCH] AppletLoader: small fix to also include "ppc64" on macs. --- src/java/org/lwjgl/util/applet/AppletLoader.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/java/org/lwjgl/util/applet/AppletLoader.java b/src/java/org/lwjgl/util/applet/AppletLoader.java index 628bb13e..90490010 100644 --- a/src/java/org/lwjgl/util/applet/AppletLoader.java +++ b/src/java/org/lwjgl/util/applet/AppletLoader.java @@ -140,14 +140,15 @@ import java.util.zip.ZipFile; *
  • Arielsan
  • *
  • Bobjob
  • *
  • Dashiva
  • + *
  • Dr_evil
  • *
  • Kevin Glass
  • *
  • Matthias Mann
  • *
  • Mickelukas
  • *
  • NateS
  • + *
  • pjohnsen
  • *
  • Riven
  • *
  • Ruben01
  • *
  • Shannon Smith
  • - *
  • pjohnsen
  • * * */ @@ -717,7 +718,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub { // check if arch specific natives have been specified if (System.getProperty("os.arch").endsWith("64")) { nativeJarList = getParameter("al_mac64"); - } else if (System.getProperty("os.arch").endsWith("ppc")) { + } else if (System.getProperty("os.arch").contains("ppc")) { nativeJarList = getParameter("al_macppc"); } else { nativeJarList = getParameter("al_mac32");