From 49961934414d5ffc866948c531562eb621ee830f Mon Sep 17 00:00:00 2001 From: markgrebe Date: Wed, 14 Sep 2005 01:50:42 +0000 Subject: [PATCH] Fixed Properties Directory setting in Mac version git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@777 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/macosx/OSystemMACOSX.cxx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/stella/src/macosx/OSystemMACOSX.cxx b/stella/src/macosx/OSystemMACOSX.cxx index dbf353101..64c5d61a1 100644 --- a/stella/src/macosx/OSystemMACOSX.cxx +++ b/stella/src/macosx/OSystemMACOSX.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: OSystemMACOSX.cxx,v 1.5 2005-09-11 22:55:51 stephena Exp $ +// $Id: OSystemMACOSX.cxx,v 1.6 2005-09-14 01:50:42 markgrebe Exp $ //============================================================================ #include @@ -73,12 +73,9 @@ OSystemMACOSX::OSystemMACOSX() string statedir = basedir + "/state"; setStateDir(statedir); -// FIXME - use setPropertiesDir() method - string userPropertiesFile = basedir + "/stella.pro"; - strcat(parentdir,"/../../../stella.pro"); - string systemPropertiesFile = parentdir; - setPropertiesFiles(userPropertiesFile, systemPropertiesFile); -//// + strcat(parentdir,"/../../.."); + string systemPropertiesDir = parentdir; + setPropertiesDir(basedir, systemPropertiesDir); string userConfigFile = basedir + "/stellarc"; string systemConfigFile = "/etc/stellarc";