Changed Qt debugger data save file extension to be .fdb instead of .dbg so that it does not conflict/overwrite ld65 debug symbol files. Fixes issue #600.

This commit is contained in:
harry 2023-01-06 23:27:06 -05:00
parent 552be94c1a
commit 77b894df0e
1 changed files with 1 additions and 1 deletions

View File

@ -4374,9 +4374,9 @@ static int getGameDebugBreakpointFileName(char *filepath)
}
filepath[i] = '.'; i++;
filepath[i] = 'f'; i++;
filepath[i] = 'd'; i++;
filepath[i] = 'b'; i++;
filepath[i] = 'g'; i++;
filepath[i] = 0;
return 0;