aboutsummaryrefslogtreecommitdiff
path: root/modules/mono/editor/godotsharp_builds.cpp
diff options
context:
space:
mode:
authorMichele Valente2018-05-17 11:34:05 +0200
committerMichele Valente2018-05-17 11:34:05 +0200
commit6c74f3de6dbba53878d9ebe377a6c33ef2294afc (patch)
treea423cc37009d6d712ca43f1532780e79d7f53d17 /modules/mono/editor/godotsharp_builds.cpp
parentb0649d2718f48c812e29884c633a823b1cb78571 (diff)
downloadgodot-6c74f3de6dbba53878d9ebe377a6c33ef2294afc.tar.gz
godot-6c74f3de6dbba53878d9ebe377a6c33ef2294afc.tar.zst
godot-6c74f3de6dbba53878d9ebe377a6c33ef2294afc.zip
Diffstat (limited to 'modules/mono/editor/godotsharp_builds.cpp')
-rw-r--r--modules/mono/editor/godotsharp_builds.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/editor/godotsharp_builds.cpp b/modules/mono/editor/godotsharp_builds.cpp
index ef54046f1..e29384aab 100644
--- a/modules/mono/editor/godotsharp_builds.cpp
+++ b/modules/mono/editor/godotsharp_builds.cpp
@@ -128,12 +128,12 @@ MonoString *godot_icall_BuildInstance_get_MSBuildPath() {
if (build_tool == GodotSharpBuilds::XBUILD) {
if (xbuild_path.empty()) {
WARN_PRINT("Cannot find binary for '" PROP_NAME_XBUILD "'");
- return;
+ return NULL;
}
} else {
if (msbuild_path.empty()) {
WARN_PRINT("Cannot find binary for '" PROP_NAME_MSBUILD_MONO "'");
- return;
+ return NULL;
}
}