From 04e66de722960ae5cea633f8d116b566f6881050 Mon Sep 17 00:00:00 2001 From: riccardom Date: Tue, 4 Aug 2009 20:20:39 +0000 Subject: [PATCH] Reorder variable initialization to shut up gcc warnings. --- desmume/src/commandline.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desmume/src/commandline.cpp b/desmume/src/commandline.cpp index aed351724..3e4e2b351 100644 --- a/desmume/src/commandline.cpp +++ b/desmume/src/commandline.cpp @@ -33,14 +33,14 @@ int scanline_filter_a = 2, scanline_filter_b = 4; CommandLine::CommandLine() -: error(NULL) +: is_cflash_configured(false) +, error(NULL) , ctx(g_option_context_new ("")) -, is_cflash_configured(false) -, _single_core(0) , _play_movie_file(0) , _record_movie_file(0) , _cflash_image(0) , _cflash_path(0) +, _single_core(0) { load_slot = 0; arm9_gdb_port = arm7_gdb_port = 0;