diff --git a/src/sample/resource.rc b/src/sample/resource.rc index 03e5cf69..8da94cc0 100644 --- a/src/sample/resource.rc +++ b/src/sample/resource.rc @@ -61,12 +61,12 @@ BEGIN BLOCK "040904b0" BEGIN VALUE "CompanyName", "momo5502" - VALUE "FileDescription", "Bird" + VALUE "FileDescription", "Windows Emulator" VALUE "FileVersion", "1.0.0.0" - VALUE "InternalName", "Bird" + VALUE "InternalName", "emulator" VALUE "LegalCopyright", "All rights reserved." - VALUE "OriginalFilename", "bird.exe" - VALUE "ProductName", "bird" + VALUE "OriginalFilename", "emulator.exe" + VALUE "ProductName", "emulator" VALUE "ProductVersion", "1.0.0.0" END END diff --git a/src/windows_emulator/syscalls.cpp b/src/windows_emulator/syscalls.cpp index 372c8fd5..98de6314 100644 --- a/src/windows_emulator/syscalls.cpp +++ b/src/windows_emulator/syscalls.cpp @@ -1836,7 +1836,11 @@ void syscall_dispatcher::add_handlers() #ifndef NDEBUG if (!handler_mapping.empty()) { - throw std::runtime_error("Unmapped handlers!"); + puts("Unmapped handlers:"); + for (const auto& h : handler_mapping) + { + printf(" %s\n", h.first.c_str()); + } } #endif }