mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-13 07:05:12 +01:00
v2.4.1: Fixed Restore key
This commit is contained in:
parent
9c9f395426
commit
434971987f
@ -1,3 +1,10 @@
|
||||
c64-network.org, v2.4.1:
|
||||
* Fixed Restore key
|
||||
* (build) Compiled against libogc 1.8.11 and SDL-Wii r101
|
||||
* Fixed full resolution in 576i video mode
|
||||
|
||||
-- Oibaf, fabio.olimpieri@tin.it, Dec 27 CEST 2012
|
||||
|
||||
|
||||
c64-network.org, v2.4:
|
||||
* Added SMB support
|
||||
|
@ -258,11 +258,11 @@ const char *options_menu_messages[15] = {
|
||||
|
||||
const char *bind_key_menu_messages[9] = {
|
||||
/*00*/ "Wiimote",
|
||||
/*01*/ "^|A|B|1|2|+|-",
|
||||
/*01*/ "^| A| B| 1| 2| +| -",
|
||||
/*02*/ "Nunchuk",
|
||||
/*03*/ "^|Z|C",
|
||||
/*03*/ "^| Z| C",
|
||||
/*04*/ "Classic",
|
||||
/*05*/ "^|a|b|x|y|L|R|Zl|Zr|+|-",
|
||||
/*05*/ "^|a|b|x|y|L|R|Zl|Zr| +| -",
|
||||
/*06*/ " ",
|
||||
/*07*/ "Reset to defaults",
|
||||
NULL
|
||||
|
@ -15,6 +15,7 @@
|
||||
|
||||
#include "virtual_keyboard.hh"
|
||||
#include "gui.hh"
|
||||
#include "C64.h"
|
||||
|
||||
typedef struct virtkey
|
||||
{
|
||||
@ -322,6 +323,9 @@ void VirtualKeyboard::runLogic()
|
||||
else if (ev & KEY_SELECT)
|
||||
{
|
||||
virtkey_t *key = &keys[ this->sel_y * KEY_COLS + this->sel_x ];
|
||||
|
||||
//Special case for Restore
|
||||
if (strcmp(key->name,"Rstr")==0) {TheC64->NMI();return;}
|
||||
|
||||
if (!key)
|
||||
return;
|
||||
|
@ -218,7 +218,7 @@ extern "C" int main(int argc, char **argv)
|
||||
|
||||
networkisinit = InitNetwork();
|
||||
|
||||
sleep(4);
|
||||
sleep(3);
|
||||
|
||||
//create tmp directory if it does not exist
|
||||
dir_tmp = opendir("/frodo/tmp");
|
||||
|
8
meta.xml
8
meta.xml
@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<app version="2">
|
||||
<app version="1">
|
||||
<name>C64-network.org (Frodo)</name>
|
||||
<coder>Simon Kagstrom</coder>
|
||||
<version>2.4</version>
|
||||
<release_date>20110808</release_date>
|
||||
<coder>Simon Kagstrom, Oibaf</coder>
|
||||
<version>2.4.1</version>
|
||||
<release_date>20121227</release_date>
|
||||
<short_description>Commodore 64 emulator</short_description>
|
||||
<long_description>C64-network.org is a networked C64 emulator based on Frodo written by Christian Bauer. It supports C64 disk and tape images in the .d64, .t64 and .prg formats. The port to Wii was done by Simon Kagstrom.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user