From 267d7bfeb19839c6d4c2dfa82bac0a315e317cc5 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Thu, 11 Jan 2007 16:25:21 +0000 Subject: [PATCH] bools aren't strings. (rcblanke) Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2751 --- src/dosbox.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dosbox.cpp b/src/dosbox.cpp index 0d6860fd..73ebc7a4 100644 --- a/src/dosbox.cpp +++ b/src/dosbox.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: dosbox.cpp,v 1.108 2007-01-11 09:51:37 qbix79 Exp $ */ +/* $Id: dosbox.cpp,v 1.109 2007-01-11 16:25:21 qbix79 Exp $ */ #include #include @@ -416,9 +416,9 @@ void DOSBOX_Init(void) { secprop->AddInitFunction(&MOUSE_Init); //Must be after int10 as it uses CurMode secprop->AddInitFunction(&JOYSTICK_Init); secprop->Add_string("joysticktype","auto"); - secprop->Add_bool("timed","true"); - secprop->Add_bool("autofire","false"); - secprop->Add_bool("swap34","false"); + secprop->Add_bool("timed",true); + secprop->Add_bool("autofire",false); + secprop->Add_bool("swap34",false); // had to rename these to serial due to conflicts in config secprop=control->AddSection_prop("serial",&SERIAL_Init,true);