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
This commit is contained in:
stephena 2004-07-12 04:05:03 +00:00
parent d246f9f3f4
commit 8876c9878b
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}