gpt4 book ai didi

C++ 快板 5 错误

转载 作者:太空宇宙 更新时间:2023-11-04 15:45:45 24 4
gpt4 key购买 nike

我正在尝试通过 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;
}

没有语法错误,但是当程序运行时它卡在 al_draw_triangle(10, 10, 20, 10, 25, 50, al_map_rgb(255, 0, 0), 1.0); 功能。下面是控制台和错误消息框的快照。 enter image description here enter image description here

请帮我解决这个问题。

最佳答案

我想您必须调用 al_init_primities_addon()Here您会找到有关此错误的更多信息。

关于C++ 快板 5 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16864923/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com