mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
feat: add console logos
This commit is contained in:
parent
de27e383b2
commit
7d56b717a2
2 changed files with 5 additions and 1 deletions
|
|
@ -14,6 +14,8 @@ DllExport DWORD WINAPI Initialize(LPVOID lpParam)
|
||||||
ConsoleSetup(L"Dalamud Boot");
|
ConsoleSetup(L"Dalamud Boot");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
printf("Dalamud.Boot Injectable, (c) 2021 XIVLauncher Contributors\nBuilt at: %s@%s\n\n", __DATE__, __TIME__);
|
||||||
|
|
||||||
wchar_t _module_path[MAX_PATH];
|
wchar_t _module_path[MAX_PATH];
|
||||||
GetModuleFileNameW(g_hModule, _module_path, sizeof _module_path / 2);
|
GetModuleFileNameW(g_hModule, _module_path, sizeof _module_path / 2);
|
||||||
std::filesystem::path fs_module_path(_module_path);
|
std::filesystem::path fs_module_path(_module_path);
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,11 @@
|
||||||
int wmain(int argc, char** argv)
|
int wmain(int argc, char** argv)
|
||||||
{
|
{
|
||||||
#if !defined(NDEBUG)
|
#if !defined(NDEBUG)
|
||||||
ConsoleSetup(L"Dalamud Injector Boot");
|
ConsoleSetup(L"Dalamud.Injector");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
printf("Dalamud.Injector, (c) 2021 XIVLauncher Contributors\nBuilt at: %s@%s\n\n", __DATE__, __TIME__);
|
||||||
|
|
||||||
wchar_t _module_path[MAX_PATH];
|
wchar_t _module_path[MAX_PATH];
|
||||||
GetModuleFileNameW(NULL, _module_path, sizeof _module_path / 2);
|
GetModuleFileNameW(NULL, _module_path, sizeof _module_path / 2);
|
||||||
std::filesystem::path fs_module_path(_module_path);
|
std::filesystem::path fs_module_path(_module_path);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue