aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/patches
diff options
context:
space:
mode:
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/53_slices2.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/patches/patches/53_slices2.patch b/patches/patches/53_slices2.patch
new file mode 100644
index 0000000..f5403a2
--- /dev/null
+++ b/patches/patches/53_slices2.patch
@@ -0,0 +1,20 @@
+20,22c20,22
+< const base1: []u8 = scrambled[15..23];
+< const base2: []u8 = scrambled[6..10];
+< const base3: []u8 = scrambled[32..];
+---
+> const base1: []const u8 = scrambled[15..23];
+> const base2: []const u8 = scrambled[6..10];
+> const base3: []const u8 = scrambled[32..];
+25,27c25,27
+< const justice1: []u8 = scrambled[11..14];
+< const justice2: []u8 = scrambled[0..5];
+< const justice3: []u8 = scrambled[24..31];
+---
+> const justice1: []const u8 = scrambled[11..14];
+> const justice2: []const u8 = scrambled[0..5];
+> const justice3: []const u8 = scrambled[24..31];
+33c33
+< fn printPhrase(part1: []u8, part2: []u8, part3: []u8) void {
+---
+> fn printPhrase(part1: []const u8, part2: []const u8, part3: []const u8) void {