updated the class-superclass compatibility check

This commit is contained in:
2025-09-18 01:09:04 +09:00
parent 8c54c12ea7
commit f8f063a68c
6 changed files with 12 additions and 17 deletions

View File

@ -980,16 +980,10 @@ int main (int argc, char* argv[])
/*hakcb.vm_checkbc = vm_checkbc;*/
hak_regcb (hak, &hakcb);
if (logopt)
{
if (handle_logopt(hak, logopt) <= -1) goto oops;
}
if (logopt && handle_logopt(hak, logopt) <= -1) goto oops;
#if defined(HAK_BUILD_DEBUG)
if (dbgopt)
{
if (handle_dbgopt(hak, dbgopt) <= -1) goto oops;
}
if (dbgopt && handle_dbgopt(hak, dbgopt) <= -1) goto oops;
#endif
if (show_info)