mupen64plus / mupen64plus-video-rice

Video plugin for the Mupen64Plus v2.0 project, using OpenGL. This plugin is based on the RiceVideoLinux plugin from earlier versions of Mupen64Plus.
31 stars 40 forks source link

Remove processDList() from code #57

Closed Narann closed 9 years ago

Narann commented 9 years ago

processDList() is actually never called by the core.

We should remove it and every useless dependencies it could have.

Have I miss anything? We should be able to remove it right?

Narann commented 9 years ago

Suprisingly, I've modified ProcessDList in Rice plugin like this:

EXPORT void CALL ProcessDList(void)
{
    printf("CALLED\n");
    //ProcessDListStep2();
}  

And CALLED is printed and nothing is displayed...

I don't understand where ProcessDList() is called...

Narann commented 9 years ago

Explication given in the original ticket, closing this one for now.