Can now log without new line.
This commit is contained in:
@@ -9,6 +9,12 @@ void startLog(char* filename)
|
||||
file = fopen(filename, "w");
|
||||
}
|
||||
|
||||
void logString(char* string)
|
||||
{
|
||||
if (!file) return;
|
||||
fputs(string, file);
|
||||
}
|
||||
|
||||
void logLine(char* string)
|
||||
{
|
||||
if (!file) return;
|
||||
|
||||
Reference in New Issue
Block a user