mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-23 19:51:19 +00:00
Fix indentation in unix command-line tool and also make sure to not use strcat for our logfile since it messes up the compressed image output.
This commit is contained in:
parent
cdbf72b6c0
commit
f03d381092
|
@ -201,7 +201,9 @@ int main(int argc, char **argv) {
|
|||
}
|
||||
|
||||
if(bSaveLog) {
|
||||
statManager->ToFile(strcat(basename, ".log"));
|
||||
char logname[256];
|
||||
sprintf(logname, "%s.log", basename);
|
||||
statManager->ToFile(logname);
|
||||
}
|
||||
|
||||
Image cImg (*ci);
|
||||
|
|
Loading…
Reference in a new issue