-Pssst... When adding arguments to functions, don't forget to make sure all calls to the function are fixed too.
This commit is contained in:
parent
50deb34e86
commit
768f32ef69
|
@ -18,7 +18,7 @@ extern DWORD ds_select;
|
||||||
extern DWORD ds_start;
|
extern DWORD ds_start;
|
||||||
extern DWORD ds_debug;
|
extern DWORD ds_debug;
|
||||||
|
|
||||||
void GetINIPath(char *initpath);
|
void GetINIPath(char *initpath,u16 bufferSize);
|
||||||
void ReadConfig(void);
|
void ReadConfig(void);
|
||||||
|
|
||||||
BOOL CALLBACK ConfigView_Proc(HWND dialog,UINT komunikat,WPARAM wparam,LPARAM lparam);
|
BOOL CALLBACK ConfigView_Proc(HWND dialog,UINT komunikat,WPARAM wparam,LPARAM lparam);
|
||||||
|
|
|
@ -467,7 +467,7 @@ int WINAPI WinMain (HINSTANCE hThisInstance,
|
||||||
LogStart();
|
LogStart();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
GetINIPath(IniName);
|
GetINIPath(IniName, MAX_PATH);
|
||||||
|
|
||||||
NDS_Init();
|
NDS_Init();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue