Skip to content

Commit

Permalink
another out-of-order declaration fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
cxd4 committed Apr 12, 2016
1 parent 972301d commit 1792f46
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions main/win/main_win.c
Original file line number Diff line number Diff line change
Expand Up @@ -454,12 +454,13 @@ void exec_config(char *name)
{
HMODULE handle;
PLUGIN_INFO PluginInfo;
handle = get_handle(liste_plugins, name);
int i ;
if (emu_launched&&!emu_paused) {
pauseEmu();
};


handle = get_handle(liste_plugins, name);
if (emu_launched && !emu_paused) {
pauseEmu();
};

if (handle) {

getDllInfo = (void(__cdecl*)(PLUGIN_INFO *PluginInfo))GetProcAddress(handle, "GetDllInfo");
Expand Down

0 comments on commit 1792f46

Please sign in to comment.