Legacy GM Sizing issue! please help ASAP!

E

EZTALES

Guest
hey y'all.
just wondering if you guys could help me with a problem i am experiencing in my game. when i play my game and go into the windowed version (not full screen) my level on the side of the room is too darn big! heres the code...
CREATE:
/// stats
level = 1;
expr = 0;
maxexpr = 2;
scrLoad();
DRAW GUI
/// draw_stats
if (room != rm_start){
draw_set_color(c_black);
draw_set_halign(fa_center);
draw_set_font(font_score);
draw_text(68, 33, "LEVEL: " + string(level));
}
Then for obj_F4...
PRESS F4
if window_get_fullscreen() { window_set_fullscreen(0); }else { window_set_fullscreen(1); }
thats all! please respond as soon as possible!
 

Pfap

Member
hmmm, might have something with drawing to the gui, try putting it in just the draw event.....
 
E

EZTALES

Guest
still dont understand what is wrong! here is a picture... issue!'.PNG this is in windowed mode. the level is too big!
 
E

EZTALES

Guest
Set it once at the start of your game. If that doesn't work, try setting it when you change between full screen and windowed mode.
hey bud could you give example? still a noob at all this lol! code is at the top for F4 mode
 
Top