• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!
  • 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.

Question - IDE Some errors (view involved)

NazGhuL

NazTaiL
Hi! That will help me to fix the problem if someone can point me out what those errors are about:

 

Jobo

Member
GMC Elder
You will need to report a bug and attach the project causing these errors to occur to the bug report.
 

NazGhuL

NazTaiL
of course...
I was creating, by error, 2 instances of my obj_display which involves the handling of fullscreen, application_surface_draw_enable, post_draw surface draw, etc...
I really don't know where the conflict was but removing one fixed the problem. ;)

-edit-
I can also add this:
Code:
var cw = camera_get_view_width(global.Camera);
var ch = camera_get_view_height(global.Camera);

Hud_Surface = surface_create(cw, ch);
Sometimes, cw and ch returned -1 which causes errors too.
 
Top