Hey all,
In my struggle to get mupen64 up and running with mythgame, I encountered an odd bug where mupen64_nogui refuses to load the plugins specified in either the config file, or from the command line args. Suffice it to say, if I'm running the emulator from mythtv, manually selecting the plugins with interactive mode is hardly an option.
The patch for it is really simple, edit ./mupen64_src-0.5/main/main.c line 232 from:
char plugins[100][100], s[20];
to:
char plugins[101][100], s[20];
Here's the patch file:
Code:
--- main.c.old 2008-01-02 00:56:16.000000000 -0700
+++ main.c 2008-01-02 00:32:27.000000000 -0700
@@ -229,7 +229,7 @@
int main (int argc, char *argv[])
{
char c;
- char plugins[100][100], s[20];
+ char plugins[101][100], s[20];
char romfile[PATH_MAX];
int old_i, i, i1, i2, i3, i4;
int p, p_fullscreen = 0, p_emumode = 0, p_gfx = 0, p_audio = 0, p_input = 0, p_rsp = 0, p_help = 0, p_error = 0;
P.S. Is this project at all active anymore? Bugs like this lead me to believe this project could do well with a live repository like CVS or SVN, and perhaps a new release including the patches already brought forward by other members of this forum.
Ciao