public static String getConfigDir() { if (JMupenUtils.getOs().equals("mac") || JMupenUtils.getOs().equals("lin")) { return JMupenUtils.getHome(); } else { return System.getProperty("java.io.tmpdir"); } }
public static String getJmupenConfigDir() { if (JMupenUtils.getOs().equalsIgnoreCase("win")) { return System.getenv("APPDATA").concat(JMupenUtils.getBar().concat("Mupen64Plus")); } else { return JMupenUtils.getHome() .concat(JMupenUtils.getBar()) .concat(".config") .concat(JMupenUtils.getBar()) .concat("mupen64plus"); } }