hedgewars/hwengine.pas
changeset 2705 2b5625c4ec16
parent 2702 48fc46a922fd
child 2714 c85ffe57d971
equal deleted inserted replaced
2704:51cda17b7c3b 2705:2b5625c4ec16
   253 
   253 
   254 	for p:= Succ(Low(TPathType)) to High(TPathType) do
   254 	for p:= Succ(Low(TPathType)) to High(TPathType) do
   255 		if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p];
   255 		if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p];
   256 		
   256 		
   257 	WriteToConsole('Init SDL... ');
   257 	WriteToConsole('Init SDL... ');
   258 	SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true);
   258 	SDLTry(SDL_Init(SDL_INIT_VIDEO or SDL_INIT_NOPARACHUTE) >= 0, true);
   259 	WriteLnToConsole(msgOK);
   259 	WriteLnToConsole(msgOK);
   260 
   260 
   261 	SDL_EnableUNICODE(1);
   261 	SDL_EnableUNICODE(1);
   262 
   262 
   263 	WriteToConsole('Init SDL_ttf... ');
   263 	WriteToConsole('Init SDL_ttf... ');