diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-08 16:07:10 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-08 16:07:10 -0400 |
commit | d592b58af373c2c8e863ff0c744f23c26a26fa64 (patch) | |
tree | 972d87514e228b9b7621c6e77dcc59eeefe19bf7 /tools/util | |
parent | 1c361226240182db6f72f26c6fe0f0de65456239 (diff) | |
download | lingo2-archipelago-d592b58af373c2c8e863ff0c744f23c26a26fa64.tar.gz lingo2-archipelago-d592b58af373c2c8e863ff0c744f23c26a26fa64.tar.bz2 lingo2-archipelago-d592b58af373c2c8e863ff0c744f23c26a26fa64.zip |
Downgrade protobuf
This allows the generated Python file to be compatible with the frozen Archipelago install.
Diffstat (limited to 'tools/util')
-rw-r--r-- | tools/util/godot_scene.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/util/godot_scene.cpp b/tools/util/godot_scene.cpp index 1e77c9e..f788d21 100644 --- a/tools/util/godot_scene.cpp +++ b/tools/util/godot_scene.cpp | |||
@@ -1,10 +1,8 @@ | |||
1 | #include "godot_scene.h" | 1 | #include "godot_scene.h" |
2 | 2 | ||
3 | #include <absl/strings/str_split.h> | ||
4 | #include <absl/strings/string_view.h> | ||
5 | |||
6 | #include <fstream> | 3 | #include <fstream> |
7 | #include <sstream> | 4 | #include <sstream> |
5 | #include <string_view> | ||
8 | #include <variant> | 6 | #include <variant> |
9 | 7 | ||
10 | namespace com::fourisland::lingo2_archipelago { | 8 | namespace com::fourisland::lingo2_archipelago { |
@@ -23,7 +21,7 @@ struct Heading { | |||
23 | GodotInstanceType instance_type; | 21 | GodotInstanceType instance_type; |
24 | }; | 22 | }; |
25 | 23 | ||
26 | Heading ParseTscnHeading(absl::string_view line) { | 24 | Heading ParseTscnHeading(std::string_view line) { |
27 | std::string original_line(line); | 25 | std::string original_line(line); |
28 | Heading heading; | 26 | Heading heading; |
29 | 27 | ||