こんにちはという画像で画面を開こうとしています。Xcode ではエラーは表示されませんが、プログラムを実行すると画面が真っ黒になります。それは単なる黒い画面であり、こんにちはと言っている画像は表示されません。イメージを同じディレクトリに置くと解決策があると聞いたので、Xcode にドラッグしました。それでも黒く映ります。
#include "SDL/SDL.h"
int main( int argc, char* args[] )
{
//The images
SDL_Surface* hello = NULL;
SDL_Surface* screen = NULL;
//Start SDL
SDL_Init( SDL_INIT_EVERYTHING );
//Set up screen
screen = SDL_SetVideoMode( 640, 480, 32, SDL_SWSURFACE );
//Load image
hello = SDL_LoadBMP( "hello.bmp" );
//Apply image to screen
SDL_BlitSurface( hello, NULL, screen, NULL );
//Update Screen
SDL_Flip( screen );
//Pause
SDL_Delay( 2000 );
//Free the loaded image
SDL_FreeSurface( hello );
//Quit SDL
SDL_Quit();
return 0;
}