Skip to content

Commit

Permalink
Remove a few debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
yagisan committed Jul 14, 2006
1 parent 11c40dc commit 7938575
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions doomsday/engine/unix/src/dd_uinit.c
Expand Up @@ -189,7 +189,6 @@ int LoadPlugin(const char *pluginPath, lt_ptr data)

int LoadPlugin(const char *pluginPath, lt_ptr data)
{
printf("Yagi - LoadPlugin: Entered\n");
#ifndef MACOSX
filename_t name;
#endif
Expand Down Expand Up @@ -231,10 +230,8 @@ int LoadPlugin(const char *pluginPath, lt_ptr data)
*/
boolean InitPlugins(void)
{
printf("Yagi - Start of InitPlugins\n");
// Try to load all libraries that begin with libdp.
lt_dlforeachfile(NULL, LoadPlugin, NULL);
printf("Yagi - End of InitPlugins\n");
return true;
}

Expand Down Expand Up @@ -272,19 +269,15 @@ int main(int argc, char **argv)

free(cmdLine);
cmdLine = NULL;
printf("Yagi - Calling InitDGL\n");
// Load the rendering DLL.
if(!DD_InitDGL())
return 1;
printf("Yagi - Calling InitGame\n");
// Load the game DLL.
if(!InitGame())
return 2;
printf("Yagi - Calling InitPlugins\n");
// Load all plugins that are found.
if(!InitPlugins())
return 3; // Fatal error occured?
printf("Yagi - Calling SDL_Init\n");
// Initialize SDL.
if(SDL_Init(SDL_INIT_TIMER))
{
Expand Down

0 comments on commit 7938575

Please sign in to comment.