Skip to content

Commit

Permalink
Added engine/portable/src/sys_sdl_window.c which contains the framewo…
Browse files Browse the repository at this point in the history
…rk for SDL-based window management, currently missing an implementation (coming soon).

Bring the window manager online AFTER the console so as we can output environment/system info.
  • Loading branch information
danij committed Jul 19, 2007
1 parent bbdcd72 commit c902c23
Show file tree
Hide file tree
Showing 6 changed files with 392 additions and 96 deletions.
20 changes: 20 additions & 0 deletions doomsday/build/win32/vs8/doomsday.vcproj
Expand Up @@ -692,6 +692,26 @@
RelativePath="..\..\..\engine\portable\src\sys_network.c"
>
</File>
<File
RelativePath="..\..\..\engine\portable\src\sys_sdl_window.c"
>
<FileConfiguration
Name="Release|Win32"
ExcludedFromBuild="true"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32"
ExcludedFromBuild="true"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
</File>
<File
RelativePath="..\..\..\engine\portable\src\sys_sfxd_dummy.c"
>
Expand Down
6 changes: 3 additions & 3 deletions doomsday/engine/portable/src/dd_pinit.c
Expand Up @@ -204,9 +204,6 @@ boolean DD_EarlyInit(void)
{
char *outfilename = "doomsday.out";

// Bring the window manager online.
Sys_InitWindowManager();

// We'll redirect stdout to a log file.
DD_CheckArg("-out", &outfilename);
outFile = fopen(outfilename, "w");
Expand Down Expand Up @@ -242,6 +239,9 @@ boolean DD_EarlyInit(void)
}
}

// Bring the window manager online.
Sys_InitWindowManager();

return true;
}

Expand Down

0 comments on commit c902c23

Please sign in to comment.