diff options
| author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-03-18 14:50:49 +0100 |
|---|---|---|
| committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-03-18 14:50:49 +0100 |
| commit | 66c0b7ce98173a06b367fea85ef0ac93065f8fd5 (patch) | |
| tree | c2c64fda5699328a44996b117d08a170cf3d15d5 /modules/mono/godotsharp_dirs.cpp | |
| parent | ae28c0fdb8f22dc26339e9f81b555e129f61b010 (diff) | |
| download | redot-engine-66c0b7ce98173a06b367fea85ef0ac93065f8fd5.tar.gz | |
C#: Fix uses of old Configuration names
Diffstat (limited to 'modules/mono/godotsharp_dirs.cpp')
| -rw-r--r-- | modules/mono/godotsharp_dirs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mono/godotsharp_dirs.cpp b/modules/mono/godotsharp_dirs.cpp index 47eb432490..828ab73c82 100644 --- a/modules/mono/godotsharp_dirs.cpp +++ b/modules/mono/godotsharp_dirs.cpp @@ -49,13 +49,13 @@ namespace GodotSharpDirs { String _get_expected_build_config() { #ifdef TOOLS_ENABLED - return "Tools"; + return "Debug"; #else #ifdef DEBUG_ENABLED - return "Debug"; + return "ExportDebug"; #else - return "Release"; + return "ExportRelease"; #endif #endif |
