News:

ポストを行うにはアカウントの登録を行ってください
Please register account, if you want to post.

Main Menu

Fortune Summoners - DxtoryRendererManagerDX7 Fail CreateDevice

Started by Denton, September 21, 2014, 12:43:43 PM

Previous topic - Next topic

Denton

Hello,
When playing Fortune Summoners [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  :)

ExKoder

Probably the game cannot be handled by Dxtory.
It is special rendering of a screen.
It seems that protection exists.

Denton

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!