diff --git a/Source/build.cpp b/Source/build.cpp index 968ee66a..06251a67 100644 --- a/Source/build.cpp +++ b/Source/build.cpp @@ -404,7 +404,7 @@ int CEXEBuild::add_string_main(const char *string, int process) // returns offse char *p = strchr(cp, ')'); if (p) { *p = 0; - if (build_userlangstrings->find(cp, 0, &idx) < 0) idx = -1; + if (build_userlangstrings.find(cp, 0, &idx) < 0) idx = -1; } free(cp); if (idx >= 0) return -(idx+1); @@ -426,7 +426,7 @@ int CEXEBuild::add_string_uninst(const char *string, int process) // returns off char *p = strchr(cp, ')'); if (p) { *p = 0; - if (ubuild_userlangstrings->find(cp, 0, &idx) < 0) idx = -1; + if (ubuild_userlangstrings.find(cp, 0, &idx) < 0) idx = -1; } free(cp); if (idx >= 0) return -(idx+1);