Fixed missing initialization in Distella settings. It doesn't really

matter (since they're updated anyway), but it's more correct to always
set defaults.


git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2639 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2013-02-28 12:17:04 +00:00
parent 079cc3c8f1
commit b613ac7f36
1 changed files with 3 additions and 1 deletions

View File

@ -988,7 +988,9 @@ void DiStella::processDirectives(const CartDebug::DirectiveList& directives)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DiStella::Settings DiStella::settings = {
kBASE_2, // gfx_format
true // show_addresses
true, // show_addresses
true, // fflag (-f in Distella)
false // rflag (-r in Distella)
};
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -