From b613ac7f3699b523b7d65cb60f9bd1962b6ccde4 Mon Sep 17 00:00:00 2001 From: stephena Date: Thu, 28 Feb 2013 12:17:04 +0000 Subject: [PATCH] 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 --- src/debugger/DiStella.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/debugger/DiStella.cxx b/src/debugger/DiStella.cxx index d745027e5..c2ce4adfc 100644 --- a/src/debugger/DiStella.cxx +++ b/src/debugger/DiStella.cxx @@ -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) }; // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -