Skip to content

Commit 7bc1c2b

Browse files
authored
Merge pull request #10846 from raulsntos/dotnet/bits-defines
C#: Remove outdated bits defines
2 parents ed65cec + 1d103b1 commit 7bc1c2b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tutorials/scripting/c_sharp/c_sharp_features.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ For example, you can change code based on the platform:
111111
112112
public override void _Ready()
113113
{
114-
#if (GODOT_32 || GODOT_MOBILE || GODOT_WEB)
114+
#if (GODOT_MOBILE || GODOT_WEB)
115115
// Use simple objects when running on less powerful systems.
116116
SpawnSimpleObjects();
117117
#else
@@ -157,8 +157,6 @@ Full list of defines
157157

158158
* ``GODOT_REAL_T_IS_DOUBLE`` is defined when the ``GodotFloat64`` property is set to ``true``.
159159

160-
* One of ``GODOT_64`` or ``GODOT_32`` is defined depending on if the architecture is 64-bit or 32-bit.
161-
162160
* One of ``GODOT_LINUXBSD``, ``GODOT_WINDOWS``, ``GODOT_OSX``,
163161
``GODOT_ANDROID``, ``GODOT_IOS``, ``GODOT_WEB``
164162
depending on the OS. These names may change in the future.

0 commit comments

Comments
 (0)