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

@@ -53,7 +53,7 @@ class ThreadList {
u32 thread_count;
ThreadInfo thread_infos[max_thread_count];
public:
ThreadList() : thread_count(0), thread_infos({}) { }
ThreadList() : thread_count(0) { }
void ReadThreadsFromProcess(Handle debug_handle, bool is_64_bit);
};