• Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

Windows Missing characters in GMS IDE

I'm lost

Member
Greetings,
I've been experiencing with http requests recently and I noticed some unfortunate thing happening - every time,
when I try some http code like:
Code:
CREATE EVENT
username = get_string("username:","");
password = get_string("password:","");
http_return = noone;
http_get("http://mywebsite.com/check.php?username="+username+"&password="+password);
Code:
ASYNC HTTP EVENT
var json = async_load[? "result"];

var map = json_decode(json);

if (ds_map_exists(map,"my_variables")) {
    var name = map[? "my_variables"];
    http_return  = name;
} else http_return  = "Undefined map";
When I start GM, IDE looks like this:
upload_2020-2-18_13-24-47.png

Everything is in it's place and working (ignore error at line 18)

---BUT---
When I run this code in GM, whole IDE starts to miss some characters like "r","s" and many more!
upload_2020-2-18_13-28-2.png

I can't really work like that, do anyone of you have experience with this?
(this bug is happening now and has happened in older versions)
 

Attachments

Top