summaryrefslogtreecommitdiff
path: root/macosx/plugins/DFNet
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-11-10 19:24:58 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-11-10 19:24:58 +0000
commit264fac97c436e9df0c0e94daef463a1f0a17d3e8 (patch)
tree3251d2162d5d764ece38e37ca72e37b0791f22c5 /macosx/plugins/DFNet
parentd054dad828eeb67f749f2a4a52fefbf17090746e (diff)
downloadpcsxr-264fac97c436e9df0c0e94daef463a1f0a17d3e8.tar.gz
OS X: Remove an unused function in DFNet.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@92225 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins/DFNet')
-rwxr-xr-xmacosx/plugins/DFNet/macsrc/cfg.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/macosx/plugins/DFNet/macsrc/cfg.c b/macosx/plugins/DFNet/macsrc/cfg.c
index f6db3ecd..0dfe4a5e 100755
--- a/macosx/plugins/DFNet/macsrc/cfg.c
+++ b/macosx/plugins/DFNet/macsrc/cfg.c
@@ -11,8 +11,6 @@
#include "dfnet.h"
-#define CFG_FILENAME "dfnet.cfg"
-
void AboutDlgProc();
void ConfDlgProc();
void ReadConfig();
@@ -27,15 +25,6 @@ long NETconfigure() {
return 0;
}
-void SaveConf() {
- FILE *f;
-
- f = fopen(CFG_FILENAME, "w");
- if (f == NULL) return;
- fwrite(&conf, 1, sizeof(conf), f);
- fclose(f);
-}
-
void LoadConf() {
ReadConfig();
}