--- BasiliskII/src/Windows/prefs_windows.cpp 2004/12/06 23:42:19 1.6 +++ BasiliskII/src/Windows/prefs_windows.cpp 2005/06/20 08:43:50 1.8 @@ -1,7 +1,7 @@ /* * prefs_windows.cpp - Preferences handling, Windows specific stuff * - * Basilisk II (C) 1997-2004 Christian Bauer + * Basilisk II (C) 1997-2005 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -51,6 +51,8 @@ prefs_desc platform_prefs_items[] = { {"routerenabled", TYPE_BOOLEAN, false, "enable NAT/Router module"}, {"ftp_port_list", TYPE_STRING, false, "FTP ports list"}, {"tcp_port", TYPE_STRING, false, "TCP ports list"}, + {"portfile0", TYPE_STRING, false, "output file for serial port 0"}, + {"portfile1", TYPE_STRING, false, "output file for serial port 1"}, {NULL, TYPE_END, false, NULL} // End of list }; @@ -130,4 +132,6 @@ void AddPlatformPrefsDefaults(void) PrefsReplaceInt32("ethermulticastmode", 0); PrefsReplaceBool("routerenabled", false); PrefsReplaceString("ftp_port_list", "21"); + PrefsReplaceString("portfile0", "C:\\B2TEMP0.OUT"); + PrefsReplaceString("portfile1", "C:\\B2TEMP1.OUT"); }