diff options
Diffstat (limited to 'win32/gui/plugin.c')
| -rw-r--r-- | win32/gui/plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/gui/plugin.c b/win32/gui/plugin.c index 20a18db3..cab6d36b 100644 --- a/win32/gui/plugin.c +++ b/win32/gui/plugin.c @@ -254,16 +254,16 @@ int _OpenPlugins(HWND hWnd) { strcpy(Config.Mcd2, info.MCD2path);
return -2;
} else {
- Config.UseNet = 0;
+ Config.UseNet = FALSE;
}
} else {
HWND hW = CreateDialog(gApp.hInstance, MAKEINTRESOURCE(IDD_CONNECT), gApp.hWnd, ConnectDlgProc);
ShowWindow(hW, SW_SHOW);
if (NET_queryPlayer() == 1) {
- if (SendPcsxInfo() == -1) Config.UseNet = 0;
+ if (SendPcsxInfo() == -1) Config.UseNet = FALSE;
} else {
- if (RecvPcsxInfo() == -1) Config.UseNet = 0;
+ if (RecvPcsxInfo() == -1) Config.UseNet = FALSE;
}
DestroyWindow(hW);
|
