mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-22 05:03:56 +00:00
Some fixes
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user