[NG] [BUG} possible crash 1.5.97 with IMenu::RefreshPlatform()
Ran into a crash on 1.5.97 (not 1.6.1170) when using LoadMovieEx() that seems to be related to IMenu.
Current:
```c++
void IMenu::RefreshPlatform()
{
using func_t = decltype(&IMenu::RefreshPlatform);
static REL::Relocation<func_t> func{ RELOCATION_ID(80287, 82309) };
return func(this);
}
```
should this be?:
```c++
void IMenu::RefreshPlatform()
{
using func_t = void(IMenu*);
static REL::Relocation<func_t> func{ RELOCATION_ID(80287, 82309) };
return func(this);
}
```
Note that this issue did not seem to occur with using commit e0e0c86
关闭于 2026-02-05 5 条评论