mirror of https://github.com/stella-emu/stella.git
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:
parent
079cc3c8f1
commit
b613ac7f36
|
@ -988,7 +988,9 @@ void DiStella::processDirectives(const CartDebug::DirectiveList& directives)
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
DiStella::Settings DiStella::settings = {
|
DiStella::Settings DiStella::settings = {
|
||||||
kBASE_2, // gfx_format
|
kBASE_2, // gfx_format
|
||||||
true // show_addresses
|
true, // show_addresses
|
||||||
|
true, // fflag (-f in Distella)
|
||||||
|
false // rflag (-r in Distella)
|
||||||
};
|
};
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
Loading…
Reference in New Issue