You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Replace a few #if/#elif with #ifdef and "#elif defined"
(cherry picked from commit ad2127a3e8)
This commit is contained in:
committed by
Rémi Verschelde
parent
bd2e707e2f
commit
3445984901
@@ -502,11 +502,11 @@ GodotSharpEditor::GodotSharpEditor(EditorNode *p_editor) {
|
||||
|
||||
String settings_hint_str = "Disabled";
|
||||
|
||||
#ifdef WINDOWS_ENABLED
|
||||
#if defined(WINDOWS_ENABLED)
|
||||
settings_hint_str += ",MonoDevelop,Visual Studio Code";
|
||||
#elif OSX_ENABLED
|
||||
#elif defined(OSX_ENABLED)
|
||||
settings_hint_str += ",Visual Studio,MonoDevelop,Visual Studio Code";
|
||||
#elif UNIX_ENABLED
|
||||
#elif defined(UNIX_ENABLED)
|
||||
settings_hint_str += ",MonoDevelop,Visual Studio Code";
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user