summaryrefslogtreecommitdiff
path: root/macosx/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/plugins')
-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();
}