mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Use std::string for target file name
This commit is contained in:
@@ -127,7 +127,7 @@ void fstk_SetPreIncludeFile(char const *path)
|
||||
static void printDep(char const *path)
|
||||
{
|
||||
if (dependfile) {
|
||||
fprintf(dependfile, "%s: %s\n", targetFileName, path);
|
||||
fprintf(dependfile, "%s: %s\n", targetFileName.c_str(), path);
|
||||
if (generatePhonyDeps)
|
||||
fprintf(dependfile, "%s:\n", path);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user