mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-04 03:35:19 +02:00
Global: Cleanup initialization/pointer checks.
Cleaning up a lot of cases of uninitialized data, unchecked return values for failures, and similar.
This commit is contained in:
@@ -229,8 +229,8 @@ void DumpMemoryWindow::changeMode(HWND hwnd, Mode newMode)
|
||||
if (filenameChosen_ == false)
|
||||
SetWindowTextA(GetDlgItem(hwnd,IDC_DUMP_FILENAME),"Custom.dump");
|
||||
} else {
|
||||
u32 start, size;
|
||||
const char* defaultFileName;
|
||||
u32 start = 0, size = 0;
|
||||
const char *defaultFileName = "";
|
||||
|
||||
switch (selectedMode)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user