From 5c4510d39ecf84d71d6afd15329dafda4fcc8556 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 4 Jul 2023 12:37:22 +1000 Subject: [PATCH] Cleanup: update code comment for DNA_struct_get_compareflags Translate (last?) Dutch text in Blender's source. --- source/blender/makesdna/intern/dna_genfile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesdna/intern/dna_genfile.cc b/source/blender/makesdna/intern/dna_genfile.cc index 0b6502058cb..2fa281216f7 100644 --- a/source/blender/makesdna/intern/dna_genfile.cc +++ b/source/blender/makesdna/intern/dna_genfile.cc @@ -681,7 +681,7 @@ const char *DNA_struct_get_compareflags(const SDNA *oldsdna, const SDNA *newsdna BLI_assert(compare_flags[a] != SDNA_CMP_UNKNOWN); } - /* First struct in `util.h` is struct Link, this is skipped in compare_flags (als # 0). + /* First struct is `struct Link`, this is skipped in compare_flags (at index `0`). * was a bug, and this way dirty patched! Solve this later. */ compare_flags[0] = SDNA_CMP_EQUAL;