Hello,
When playing Fortune Summoners (http://store.steampowered.com/app/203510/) [Win7x64] I'm able to screenshot and record video (but cannot see the FPS overlay).
The problem is my ErrorLog.txt gets very very big while playing; 500mb+!
Thank you for any help :)
Probably the game cannot be handled by Dxtory.
It is special rendering of a screen.
It seems that protection exists.
Ah ha! Okay thank you. Since I can still screenshot/record, I just need is to block writing access to ErrorLog.txt while playing the game.
I've made an AutoHotKey script which sets FileAttribute to Read-Only while the game is running and is restored at exit:
steamDir=E:\Games\Steam\
gameDir=%steamDir%steamapps\common\Fortune Summoners\
ReadOnly(state){
FileSetAttrib, %state%, %A_AppData%\..\Local\Dxtory Software\Dxtory2.0\ErrorLog.txt
}
ReadOnly("+R")
Run, %gameDir%sotes.exe
Process, Exist, sotes.exe
Process, WaitClose, sotes.exe
ReadOnly("-R")
ExitApp
No more massive ErrorLog.txt!