mirror of https://github.com/snes9xgit/snes9x.git
Fix ZeroMemory reference.
This commit is contained in:
parent
faa870ba49
commit
dc773bb6be
|
@ -51,7 +51,7 @@ main (int argc, char *argv[])
|
|||
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
||||
textdomain (GETTEXT_PACKAGE);
|
||||
|
||||
ZeroMemory (&Settings, sizeof (Settings));
|
||||
memset (&Settings, 0, sizeof (Settings));
|
||||
|
||||
/* Allow original config file for backend settings */
|
||||
S9xLoadConfigFiles (argv, argc);
|
||||
|
|
Loading…
Reference in New Issue