revert back to using f* for file io. I hope this fixes the catapult, but I wouldn't be suprised if it doesn't.

This commit is contained in:
Bill Currie 2000-05-23 22:43:36 +00:00
parent 02eaf75b18
commit e98edd5f5f
15 changed files with 113 additions and 115 deletions

View file

@ -673,7 +673,7 @@ void Key_WriteBindings (FILE *f)
for (i=0 ; i<256 ; i++)
if (keybindings[i])
Qprintf (f, "bind %s \"%s\"\n", Key_KeynumToString(i), keybindings[i]);
fprintf (f, "bind %s \"%s\"\n", Key_KeynumToString(i), keybindings[i]);
}