aboutsummaryrefslogtreecommitdiff
path: root/backends/base-backend.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/base-backend.cpp')
-rw-r--r--backends/base-backend.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/backends/base-backend.cpp b/backends/base-backend.cpp
index f3935b5893..624de1f3e5 100644
--- a/backends/base-backend.cpp
+++ b/backends/base-backend.cpp
@@ -18,6 +18,9 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
+ * $URL$
+ * $Id$
+ *
*/
#include "backends/base-backend.h"
@@ -57,11 +60,15 @@ void BaseBackend::fillScreen(uint32 col) {
*/
-#if defined(UNIX)
+#if defined(POSIX)
+#if defined(SAMSUNGTV)
+#define DEFAULT_CONFIG_FILE "/dtv/usb/sda1/.scummvmrc"
+#else
#define DEFAULT_CONFIG_FILE ".scummvmrc"
#endif
+#endif
-#if !defined(UNIX)
+#if !defined(POSIX)
#define DEFAULT_CONFIG_FILE "scummvm.ini"
#endif