logging of live data structs was: data points #3614

one step back
This commit is contained in:
rusefillc 2022-04-13 21:46:38 -04:00
parent bc9d6089ec
commit f7e2d5a4d2
2 changed files with 3 additions and 0 deletions

Binary file not shown.

View File

@ -33,6 +33,7 @@ public class UsagesReader {
"#include \"pch.h\"\n" +
"#include \"FragmentEntry.h\"\n\n" +
"#include \"tunerstudio.h\"\n" +
"/*\n" +
"static FragmentEntry fragments[] = {\n");
@ -78,6 +79,8 @@ public class UsagesReader {
fragmentsContent.append("};\n");
fragmentsContent.append("*/\n");
try (FileWriter fw = new FileWriter("console/binary/generated/live_data_fragments.cpp")) {
fw.write(fragmentsContent.toString());
}