new debug function to save a string to a file

This commit is contained in:
Bryce Hutchings 2002-07-11 04:26:46 +00:00
parent 58788cd1ee
commit 38bb444bf0

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.15 2002/07/11 04:26:46 niceass
// new debug function to save a string to a file
//
// Revision 1.14 2002/07/09 03:31:25 niceass
// oops
//
@ -817,3 +820,15 @@ int G_PlayerAlive(gentity_t *ent)
return qfalse;
}
}
/*
Want to save data right before RQ3 crashes? Ues this =D
*/
void G_DebugSaveData(char *Data) {
fileHandle_t f;
if (trap_FS_FOpenFile("debugout.txt", &f, FS_WRITE) >= 0) {
trap_FS_Write(Data, strlen(Data), f);
trap_FS_FCloseFile(f);
}
}