From 8876c9878bcb64f6185ea268baf39338eab902f7 Mon Sep 17 00:00:00 2001 From: stephena Date: Mon, 12 Jul 2004 04:05:03 +0000 Subject: [PATCH] Fixed -listrominfo output; it wasn't outputting manufacturer (typo). git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@307 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/emucore/Props.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stella/src/emucore/Props.cxx b/stella/src/emucore/Props.cxx index 0b60b2190..79668fe87 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.6 2004-07-07 22:46:01 stephena Exp $ +// $Id: Props.cxx,v 1.7 2004-07-12 04:05:03 stephena Exp $ //============================================================================ #include "Props.hxx" @@ -285,7 +285,7 @@ void Properties::print() cout << get("Cartridge.MD5") << "|" << get("Cartridge.Name") << "|" << get("Cartridge.Rarity") << "|" - << get("Cartridge.Manufactuer") << "|" + << get("Cartridge.Manufacturer") << "|" << get("Cartridge.Note") << endl; }