Skip to content

Commit

Permalink
Version 1.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
alekasm committed Feb 5, 2021
1 parent 1586350 commit dbcf4a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions SC2KRender/SC2KRender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,18 @@ int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance
std::filesystem::path map_path = std::filesystem::current_path();
map_path.append("maps");

help_string = "SC2KRender (Version 0.9A)\n";
help_string = "SC2KRender Version 1.0\n";
help_string.append("Written by Aleksander Krimsky | www.krimsky.net\n");
help_string.append("Lead Artist: Thomas Nelson\n");
help_string.append("Written with DirectX 11 - Modified DirectXTK\n");
help_string.append("GitHub: https://github.com/alekasm/SC2KRender \n\n");
help_string.append("Controls:\nFree Cam: WASD\nStrafe Up/Down: RF\n\n");
help_string.append("Default maps: ");
help_string.append(map_path.string());
help_string.append("\n");
if (std::filesystem::exists(map_path))
{
help_string.append("Maps: ");
help_string.append(map_path.string());
help_string.append("\n");
}
printf("%s", help_string.c_str());

CoInitializeEx(nullptr, COINITBASE_MULTITHREADED);
Expand Down
Binary file modified SC2KRender/assets/models/196_abandoned_building.cmo
Binary file not shown.
Binary file modified SC2KRender/assets/models/197_abandoned_building.cmo
Binary file not shown.

0 comments on commit dbcf4a9

Please sign in to comment.