From 0f87b26c10b680b469841d3873fcc1fcb2c83c56 Mon Sep 17 00:00:00 2001 From: knakos Date: Thu, 20 Apr 2006 18:11:25 +0000 Subject: [PATCH] correct init for romdir git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1095 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/wince/SettingsWinCE.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stella/src/wince/SettingsWinCE.cpp b/stella/src/wince/SettingsWinCE.cpp index f1d90faa9..8af12514b 100644 --- a/stella/src/wince/SettingsWinCE.cpp +++ b/stella/src/wince/SettingsWinCE.cpp @@ -8,7 +8,7 @@ // SS SS tt ee ll ll aa aa // SSSS ttt eeeee llll llll aaaaa // -// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team +// Copyright (c) 1995-2006 by Bradford W. Mott and the Stella team // // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. @@ -26,7 +26,7 @@ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SettingsWinCE::SettingsWinCE(OSystem* osystem) : Settings(osystem) { - setInternal("romdir", (string) getcwd() + '\\'); + setInternal("romdir", (string) getcwd() + "\\Roms\\"); setInt("wce_smartphone_paddlespeed", 3000); }