我正在尝试通过 youtube 教程学习一些 allegro 5 原则,这是我的第一个问题。
#include<allegro5/allegro.h>
#include<allegro5/allegro_native_dialog.h>
#include<allegro5/allegro_primitives.h>
#include<Windows.h>
#define ScreenWidth 800
#define ScreenHeight 600
int main()
{
ALLEGRO_DISPLAY *display;
if(!al_init())
{
al_show_native_message_box(NULL, NULL, "Error" , "Could not initialize Allegro 5" , NULL, ALLEGRO_MESSAGEBOX_ERROR);
return -1;
}
display = al_create_display(ScreenWidth, ScreenHeight);
if(!display)
{
al_show_native_message_box(NULL, NULL, "Error" , "Could not create Allegro 5 display" , NULL, ALLEGRO_MESSAGEBOX_ERROR);
return -1;
}
al_set_new_display_flags(ALLEGRO_NOFRAME);
al_set_window_position(display, 200, 100);
al_set_window_title(display, "CodingMadeEasy" );
system("pause");
al_draw_triangle(10, 10, 20, 10, 25, 50, al_map_rgb(255, 0, 0), 1.0);
system("pause");
al_flip_display();
al_rest(5.0);
al_destroy_display(display);
return 0;
}
没有 sytnax 错误,但是当程序运行时,它会卡在al_draw_triangle(10, 10, 20, 10, 25, 50, al_map_rgb(255, 0, 0), 1.0);
函数上。这是控制台和错误消息框的快照。
请帮我解决这个问题。