rm plugins that we won't use
[pcsx_rearmed.git] / plugins / dfnet / cfg.c
diff --git a/plugins/dfnet/cfg.c b/plugins/dfnet/cfg.c
deleted file mode 100644 (file)
index a63b074..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-//
-// DF Netplay Plugin
-//
-// Based on netSock 0.2 by linuzappz.
-// The Plugin is free source code.
-//
-
-#include <stdio.h>
-#include <stdlib.h>
-
-#include "dfnet.h"
-
-#define CFG_FILENAME "dfnet.cfg"
-
-void SaveConf() {
-       FILE *f;
-
-       f = fopen(CFG_FILENAME, "w");
-       if (f == NULL) return;
-       fwrite(&conf, 1, sizeof(conf), f);
-       fclose(f);
-}
-
-void LoadConf() {
-       FILE *f;
-
-       f = fopen(CFG_FILENAME, "r");
-       if (f == NULL) {
-               conf.PlayerNum = 1;
-               conf.PortNum = 33306;
-               strcpy(conf.ipAddress, "127.0.0.1");
-               return;
-       }
-
-       fread(&conf, 1, sizeof(conf), f);
-       fclose(f);
-}