Skip to content

Commit

Permalink
json error
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitre authored Jun 10, 2024
1 parent 9bbb018 commit fdb7762
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commandLine/src/projects/baseProject.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#define PG_VERSION "47"
#define PG_VERSION "48"

#include "ofAddon.h"
#include "pugixml.hpp"
Expand Down
3 changes: 2 additions & 1 deletion commandLine/src/projects/xcodeProject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,8 @@ bool xcodeProject::saveProjectFile(){
json j { json::parse(contents) };
contents.close();

j["_OFProjectGeneratorVersion"] = getPGVersion();
json jversion = getPGVersion();
j["_OFProjectGeneratorVersion"] = jversion;


for (auto & c : commands) {
Expand Down

0 comments on commit fdb7762

Please sign in to comment.