Hi all,
I uploaded another version (r3) to repo.openpandora.org
Download
If you are upgrading from a previous version, you need to delete the file pandora/appdata/mednafen/.mednafen/mednafen-09x.cfg in order to pick up the new settings
Changes since r2:
* Enabled cheats console
Press \ (Fn-c) to toggle the cheat console
Press ! to enable or disable cheats
* Enabled network console
Press n to open the console
See below for more info on network play
* Made English default language for Neo Geo pocket
* To restore default config file, simply delete mednafen-09x.cfg and restart
Network Play
If you would like to try out network play, here is what I did to test it:
Download and build mednafen-0.9.17-wip.tar.bz2 from http://forum.fobby.net/index.php?t=msg&goto=2113&
I haven't tested any other versions, but they might work.
Download and build the latest mednafen-server from sourceforge here http://sourceforge.net/projects/mednafen/files/
Start it up with
./mednafen-server standard.conf
On the PC build start up a game and press 't' followed by
/server localhost 4046
On the Pandora start up the same game and press 'n' followed by
/server server_ip 4046
I tested it with a couple nes and pc engine games and it worked quite well with no hiccups using usb network.
With wifi I noticed a few hiccups, but they mostly went away after doing
sudo iwconfig wlan0 power off
If you try pcengine games, you need to launch mednafen on the PC with the parameters '-force_module pce_fast' for it to work.
One other thing I had to do:
On my PC build of mednafen the Enter key was not working in the network console.
I had to apply this patch
Code:
--- a/src/drivers/console.cpp
+++ b/src/drivers/console.cpp
@@ -102,6 +102,7 @@ int MDFNConsole::Event(const SDL_Event *event)
break;
case SDLK_RETURN:
+ case SDLK_KP_ENTER:
{
std::string concat_str;
for(unsigned int i = 0; i < kb_buffer.size(); i++)
Please see the documentation at http://mednafen.sourceforge.net/documentation/ for more info on how to use the cheats and net play