creport: Clean up bugs, now saves (empty) reports to the SD successfully

This commit is contained in:
Michael Scire 2018-06-25 22:27:33 -06:00
parent 12236eae9e
commit d5b303f852
6 changed files with 14 additions and 7 deletions

View file

@ -16,7 +16,7 @@ class CodeList {
u32 code_count;
CodeInfo code_infos[max_code_count];
public:
CodeList() : code_count(0), code_infos({}) { }
CodeList() : code_count(0) { }
void ReadCodeRegionsFromProcess(Handle debug_handle, u64 pc, u64 lr);
private: