尝试从头开始重新安装SDL_Init(SDL_INIT_EVERYTHING);
SDL_Surface* picture = NULL;
Uint8 red, green, blue;
picture = SDL_LoadBMP("avxsample.bmp");
if (picture != NULL)
{
printf("BMP File is loaded!\n");
// This part is unclear for me...
SDL_SaveBMP(picture, "avxsamlpe_new.bmp");
}
else
{
printf("Cannot load BMP File!\n");
SDL_FreeSurface(picture);
}
return 0;
时,我决定使用developer.apple.com网站上的Xcode9
下载。
我打开了存档,将其移动到Application文件夹并启动它。没问题,除了我试图解决的问题仍然存在......
现在我去了App Store,我发现Xcode的结果是未安装的。 我该怎么办? 我在MacBook Pro 15上运行它"从2016年开始,使用macOS 10.12.6。