
Does anyone know what I'm doing wrong? Is it my computer or something?
Here's my code:
globalvar swap_surf;
swap_surf = surface_create(room_width, room_height);
surface_set_target(swap_surf);
draw_clear_alpha(c_white, 0);
scr_surf();
surface_reset_target();
//Draw event
if (variable_global_exists("swap_surf"))
{
draw_surface_ext(swap_surf, 0, 0, 1, 1, 0, c_white, draw_get_alpha());
}
//scr_surf
draw_set_color(c_gray);
draw_rectangle(10, 10, room_width-10, room_height-10, false);
draw_set_color(c_white);
draw_text(15, 20, "Surface test.");



Find content
Male
