]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
argh, should be called darkplaces_history.txt (like darkplaces_iplog.txt)
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 17 May 2009 19:00:10 +0000 (19:00 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 17 May 2009 19:00:10 +0000 (19:00 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8972 d7cf8633-e32d-0410-b094-e92efae38249

keys.c

diff --git a/keys.c b/keys.c
index a024ca0414d0ed8a7f6c1370c6caf25473989a6f..885212da699a113c7dfb6bbd07412f9be2a2b703 100644 (file)
--- a/keys.c
+++ b/keys.c
@@ -41,7 +41,7 @@ char          history_savedline[MAX_INPUTLINE];
 
 static void Key_History_Init()
 {
-       qfile_t *historyfile = FS_OpenRealFile("dp_history.txt", "r", false);
+       qfile_t *historyfile = FS_OpenRealFile("darkplaces_history.txt", "r", false);
        if(historyfile)
        {
                char buf[MAX_INPUTLINE];
@@ -81,7 +81,7 @@ static void Key_History_Shutdown()
 {
        // TODO write history to a file
 
-       qfile_t *historyfile = FS_OpenRealFile("dp_history.txt", "w", false);
+       qfile_t *historyfile = FS_OpenRealFile("darkplaces_history.txt", "w", false);
        if(historyfile)
        {
                int l = -1;