Skip to content

Commit fdb7762

Browse files
authored
json error
1 parent 9bbb018 commit fdb7762

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

commandLine/src/projects/baseProject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#define PG_VERSION "47"
3+
#define PG_VERSION "48"
44

55
#include "ofAddon.h"
66
#include "pugixml.hpp"

commandLine/src/projects/xcodeProject.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,8 @@ bool xcodeProject::saveProjectFile(){
838838
json j { json::parse(contents) };
839839
contents.close();
840840

841-
j["_OFProjectGeneratorVersion"] = getPGVersion();
841+
json jversion = getPGVersion();
842+
j["_OFProjectGeneratorVersion"] = jversion;
842843

843844

844845
for (auto & c : commands) {

0 commit comments

Comments
 (0)