You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function scr_a_bug() {
var i, k = 1 << 53;
i = 2147483647;
show_debug_message($"i: {i}, is_real: {is_real(i)}, is_int64: {is_int64(i)}");
i = i ^ k;
show_debug_message($"i: {i}, is_real: {is_real(i)}, is_int64: {is_int64(i)}");
i = 2147483647;
i ^= k;
show_debug_message($"i: {i}, is_real: {is_real(i)}, is_int64: {is_int64(i)}");
}
Description
Given the following,
The output is
Which is a little unexpected.
Project file
Expected Change
No response
Steps To Reproduce
How reliably can you recreate this issue using your steps above?
Always
Which version of GameMaker are you reporting this issue for?
2024.11.0 (Monthly)
Which platform(s) are you seeing the problem on?
Windows
Sample Package Attached?
Sample Project Added?
The text was updated successfully, but these errors were encountered: