mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-22 01:31:25 +00:00
Fix uninit var in CmdMemoryLoad()
This commit is contained in:
parent
a70bd70665
commit
8d4cb8de35
@ -4250,10 +4250,10 @@ Update_t CmdMemoryLoad (int nArgs)
|
|||||||
TCHAR sLoadSaveFilePath[ MAX_PATH ];
|
TCHAR sLoadSaveFilePath[ MAX_PATH ];
|
||||||
_tcscpy( sLoadSaveFilePath, g_sCurrentDir ); // TODO: g_sDebugDir
|
_tcscpy( sLoadSaveFilePath, g_sCurrentDir ); // TODO: g_sDebugDir
|
||||||
|
|
||||||
WORD nAddressStart;
|
WORD nAddressStart = 0;
|
||||||
WORD nAddress2 = 0;
|
WORD nAddress2 = 0;
|
||||||
WORD nAddressEnd = 0;
|
WORD nAddressEnd = 0;
|
||||||
int nAddressLen = 0;
|
int nAddressLen = 0;
|
||||||
|
|
||||||
if( pFileType )
|
if( pFileType )
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user