diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-12 03:03:58 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-12 03:03:58 +0000 |
| commit | 0169e4968d17823b71c52961c52417ea8057130c (patch) | |
| tree | feae8d106164c1fbd43ddf9e7adc4ff4a3f70e84 /libpcsxcore/plugins.c | |
| parent | 34b2030516e8fcab81affc1e11a9b2f1a61761e4 (diff) | |
| download | pcsxr-0169e4968d17823b71c52961c52417ea8057130c.tar.gz | |
use boolean for where it should.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@47869 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/plugins.c')
| -rw-r--r-- | libpcsxcore/plugins.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpcsxcore/plugins.c b/libpcsxcore/plugins.c index 59d14bb6..90db0961 100644 --- a/libpcsxcore/plugins.c +++ b/libpcsxcore/plugins.c @@ -480,11 +480,11 @@ int LoadPlugins() { if (LoadPAD2plugin(Plugin) == -1) return -1;
if (strcmp("Disabled", Config.Net) == 0 || strcmp("", Config.Net) == 0)
- Config.UseNet = 0;
+ Config.UseNet = FALSE;
else {
- Config.UseNet = 1;
+ Config.UseNet = TRUE;
sprintf(Plugin, "%s/%s", Config.PluginsDir, Config.Net);
- if (LoadNETplugin(Plugin) == -1) Config.UseNet = 0;
+ if (LoadNETplugin(Plugin) == -1) Config.UseNet = FALSE;
}
ret = CDR_init();
|
