Skip to content

Commit ebc04bf

Browse files
committed
feat: Implement project manifest loading and new project initialization functionality.
1 parent f9fa8c0 commit ebc04bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/prm/manifest.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static void parseLine(char* line, Manifest* manifest) {
5050
}
5151

5252
bool prm_load_manifest(Manifest* manifest) {
53-
FILE* file = fopen("project.px", "r");
53+
FILE* file = fopen("project.pxcf", "r");
5454
if (!file) return false;
5555

5656
// Defaults
@@ -77,9 +77,9 @@ void prm_init(const char* name) {
7777
return;
7878
}
7979

80-
FILE* file = fopen("project.px", "w");
80+
FILE* file = fopen("project.pxcf", "w");
8181
if (!file) {
82-
printf("Error: Could not create project.px\n");
82+
printf("Error: Could not create project.pxcf\n");
8383
return;
8484
}
8585

0 commit comments

Comments
 (0)