Fixed linking of chdman.exe and romcmp.exe with Visual

Studio.  [Oliver Stoneberg]
This commit is contained in:
Scott Stone 2010-04-23 21:01:52 +00:00
parent 493315be0d
commit 0bdba8491b
2 changed files with 2 additions and 2 deletions

View File

@ -3307,7 +3307,7 @@ static chd_error chdman_clone_metadata(chd_file *source, chd_file *dest)
main - entry point
-------------------------------------------------*/
int CLIB_DECL main(int argc, char **argv)
int CLIB_DECL main(int argc, char *argv[])
{
static const struct
{

View File

@ -553,7 +553,7 @@ static int load_files(int i, int *found, const char *path)
}
int CLIB_DECL main(int argc,char **argv)
int CLIB_DECL main(int argc,char *argv[])
{
int err;
int total_modes = MODE_NIB2; /* by default, use only MODE_A, MODE_NIB1 and MODE_NIB2 */