NetHack-cn icon indicating copy to clipboard operation
NetHack-cn copied to clipboard

NetHack汉化

Results 1 NetHack-cn issues
Sort by recently updated
recently updated
newest added

看起来像是问题是从corpse_xname (objnam.c)来的。 ``` /* it's safe to overwrite our nambuf after an() has copied its old value into another buffer */ if (any_prefix) Strcpy(nambuf, nambuf); ``` 这一点代码有什么用?根据strcopy的[docs](https://en.cppreference.com/w/c/string/byte/strcpy)这用法是未定义行为。 我觉得注释掉这个代码会修复问题。