From 3f4b4adae5f5ebbfe021e10fdbf7de0748d01e5e Mon Sep 17 00:00:00 2001 From: hedara90 <90hedara@gmail.com> Date: Tue, 23 Jul 2024 20:09:32 +0200 Subject: [PATCH] Updated reference to config location to new location (#5026) Co-authored-by: Hedara --- src/data/battle_partners.h | 2 +- src/data/trainers.h | 2 +- test/battle/trainer_control.h | 2 +- tools/trainerproc/main.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/battle_partners.h b/src/data/battle_partners.h index ae0b753cb3..95866d24fa 100644 --- a/src/data/battle_partners.h +++ b/src/data/battle_partners.h @@ -2,7 +2,7 @@ // DO NOT MODIFY THIS FILE! It is auto-generated from src/data/battle_partners.party // // If you want to modify this file set COMPETITIVE_PARTY_SYNTAX to FALSE -// in include/config.h and remove this notice. +// in include/config/general.h and remove this notice. // Use sed -i '/^#line/d' 'src/data/battle_partners.h' to remove #line markers. // diff --git a/src/data/trainers.h b/src/data/trainers.h index d2ac55368f..6215baf1c4 100644 --- a/src/data/trainers.h +++ b/src/data/trainers.h @@ -2,7 +2,7 @@ // DO NOT MODIFY THIS FILE! It is auto-generated from src/data/trainers.party // // If you want to modify this file set COMPETITIVE_PARTY_SYNTAX to FALSE -// in include/config.h and remove this notice. +// in include/config/general.h and remove this notice. // Use sed -i '/^#line/d' 'src/data/trainers.h' to remove #line markers. // diff --git a/test/battle/trainer_control.h b/test/battle/trainer_control.h index f9eac4c825..72db458de7 100644 --- a/test/battle/trainer_control.h +++ b/test/battle/trainer_control.h @@ -2,7 +2,7 @@ // DO NOT MODIFY THIS FILE! It is auto-generated from test/battle/trainer_control.party // // If you want to modify this file set COMPETITIVE_PARTY_SYNTAX to FALSE -// in include/config.h and remove this notice. +// in include/config/general.h and remove this notice. // Use sed -i '/^#line/d' 'test/battle/trainer_control.h' to remove #line markers. // diff --git a/tools/trainerproc/main.c b/tools/trainerproc/main.c index dc940cfdbb..c6eb99cb95 100644 --- a/tools/trainerproc/main.c +++ b/tools/trainerproc/main.c @@ -1583,7 +1583,7 @@ static void fprint_trainers(const char *output_path, FILE *f, struct Parsed *par fprintf(f, "// DO NOT MODIFY THIS FILE! It is auto-generated from %s\n", parsed->source->path); fprintf(f, "//\n"); fprintf(f, "// If you want to modify this file set COMPETITIVE_PARTY_SYNTAX to FALSE\n"); - fprintf(f, "// in include/config.h and remove this notice.\n"); + fprintf(f, "// in include/config/general.h and remove this notice.\n"); fprintf(f, "// Use sed -i '/^#line/d' '%s' to remove #line markers.\n", output_path); fprintf(f, "//\n"); fprintf(f, "\n");