Fix some initialization order warnings.
This commit is contained in:
parent
0d045858e2
commit
0ff64ec7d6
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ typedef struct {
|
||||||
class CMipsInstruction
|
class CMipsInstruction
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CMipsInstruction(DebugInterface* cpu):cpu(cpu),Loaded(false) { };
|
CMipsInstruction(DebugInterface* cpu):Loaded(false), cpu(cpu) { };
|
||||||
bool Load(char* Name, char* Params, int RamPos);
|
bool Load(char* Name, char* Params, int RamPos);
|
||||||
bool Validate();
|
bool Validate();
|
||||||
void Encode();
|
void Encode();
|
||||||
|
|
|
@ -329,7 +329,7 @@ private:
|
||||||
};
|
};
|
||||||
|
|
||||||
GameBrowser::GameBrowser(std::string path, bool allowBrowsing, bool *gridStyle, std::string lastText, std::string lastLink, UI::LayoutParams *layoutParams)
|
GameBrowser::GameBrowser(std::string path, bool allowBrowsing, bool *gridStyle, std::string lastText, std::string lastLink, UI::LayoutParams *layoutParams)
|
||||||
: LinearLayout(UI::ORIENT_VERTICAL, layoutParams), path_(path), allowBrowsing_(allowBrowsing), gridStyle_(gridStyle), gameList_(0), lastText_(lastText), lastLink_(lastLink) {
|
: LinearLayout(UI::ORIENT_VERTICAL, layoutParams), path_(path), gameList_(0), allowBrowsing_(allowBrowsing), gridStyle_(gridStyle), lastText_(lastText), lastLink_(lastLink) {
|
||||||
using namespace UI;
|
using namespace UI;
|
||||||
Refresh();
|
Refresh();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue