mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-24 03:52:42 +00:00
Elf loader etc: Added command line elf loader so I can build and run homebrew with F5, use it with -e file.elf. Made some comments towards finding why lwbt fails to complete the HCI negotiation. I found that it worked in revision 800 so I will try to figure out what broke it along the way. Made some other small changes.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1432 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
7f00e271e5
commit
9e0439a193
22 changed files with 309 additions and 148 deletions
|
@ -37,7 +37,7 @@
|
|||
#include "../Logging/Console.h" // open and close console
|
||||
|
||||
extern std::vector<std::string> sMailLog, sMailTime;
|
||||
|
||||
extern CDebugger* m_frame;
|
||||
|
||||
// =======================================================================================
|
||||
// Update mail window
|
||||
|
@ -60,7 +60,10 @@ void CDebugger::DoUpdateMail()
|
|||
void CDebugger::UpdateMail(wxNotebookEvent& event)
|
||||
{
|
||||
DoUpdateMail();
|
||||
if(StoreMails) ReadDir();
|
||||
/* This may be called before m_frame is fully created through the
|
||||
EVT_NOTEBOOK_PAGE_CHANGED, in that case it will crash because this
|
||||
is accessing members of it */
|
||||
if(StoreMails && m_frame) ReadDir();
|
||||
}
|
||||
|
||||
// Change mail from radio button change
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue