OS X: Remove an unused function in DFNet.

git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@92225 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\MaddTheSane_cp 2014-11-10 19:24:58 +00:00
parent d054dad828
commit 264fac97c4
1 changed files with 0 additions and 11 deletions

View File

@ -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();
}