From d876ee0766b321d30004106de30a0af57459c2e6 Mon Sep 17 00:00:00 2001 From: stephena Date: Mon, 11 Nov 2002 02:49:02 +0000 Subject: [PATCH] Added an extra newline character to the Properties::save() method so that when a Properties object is saved to a properties file, that file looks more like the default stella.pro. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@130 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/emucore/Props.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stella/src/emucore/Props.cxx b/stella/src/emucore/Props.cxx index afa777bb0..795051083 100644 --- a/stella/src/emucore/Props.cxx +++ b/stella/src/emucore/Props.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: Props.cxx,v 1.3 2002-11-09 23:29:51 stephena Exp $ +// $Id: Props.cxx,v 1.4 2002-11-11 02:49:02 stephena Exp $ //============================================================================ #include "Props.hxx" @@ -160,6 +160,7 @@ void Properties::save(ostream& out) // Put a trailing null string so we know when to stop reading writeQuotedString(out, ""); out.put('\n'); + out.put('\n'); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -