minor fixes

This commit is contained in:
dborth 2009-05-21 05:58:19 +00:00
parent a59ecff899
commit b752684807
4 changed files with 5 additions and 19 deletions

View File

@ -7,7 +7,7 @@
::::::::::::::::/ /::--/_______\::.________/::::/ /:­::\ _ \::::::×::: ::::::::::::::::/ /::--/_______\::.________/::::/ /:­::\ _ \::::::×:::
:::::::°:::::::/___\:::::::::::::::::::::::::::::/ /::::/__/ \--::­:::::: :::::::°:::::::/___\:::::::::::::::::::::::::::::/ /::::/__/ \--::­::::::
°:::::::::::::::::×:::::::::::::::°::::×:::::::::\--/::::::::::::::::::×::::: °:::::::::::::::::×:::::::::::::::°::::×:::::::::\--/::::::::::::::::::×:::::
­———————————————————————————————————————————————————————————————————————•ßrK• ­————————————————————————————————————————————————————————————————————————————
×—–­—–­—–­—–­ –­—–­—–­—–­—–­—–­—–­—–­—–­—–­— ­—–­—–­—–­—–­—–­—–­—–­—-­—–­-–•¬ ×—–­—–­—–­—–­ –­—–­—–­—–­—–­—–­—–­—–­—–­—–­— ­—–­—–­—–­—–­—–­—–­—–­—-­—–­-–•¬
|0O×øo· Snes9x GX 4.0.4 ·oø×O0| |0O×øo· Snes9x GX 4.0.4 ·oø×O0|
@ -23,9 +23,7 @@ currently being maintained by Tantric and michniewski.
Snes9x GX is a "homebrew application" which means you will need a way to run Snes9x GX is a "homebrew application" which means you will need a way to run
unsigned code on your Nintendo Wii. The best website for getting started with unsigned code on your Nintendo Wii. The best website for getting started with
Wii homebrew is WiiBrew (www.wiibrew.org). Also check out TehSkeen Wii homebrew is WiiBrew (www.wiibrew.org).
(www.tehskeen.com) for its support forums. Each site has information and
guides on how to install and get homebrew working on your Nintendo Wii.
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————• •˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| FEATURES | | FEATURES |
@ -649,7 +647,6 @@ changes to the emulator settings again and save them.
Snes9x 1.51 Snes9x Team Snes9x 1.51 Snes9x Team
libogc/devkitPPC shagkur & wintermute libogc/devkitPPC shagkur & wintermute
FreeTypeGX Armin Tamzarian FreeTypeGX Armin Tamzarian
Documentation brakken
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————• •˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| LINKS | | LINKS |
@ -660,9 +657,6 @@ changes to the emulator settings again and save them.
Wii Homebrew Community Wii Homebrew Community
www.wiibrew.org www.wiibrew.org
SNES9X GX Support Site
www.tehskeen.com
Free (Public Domain) ROMs Free (Public Domain) ROMs
www.pdroms.de www.pdroms.de

View File

@ -18,9 +18,7 @@
#include <malloc.h> #include <malloc.h>
#ifdef HW_RVL #ifdef HW_RVL
extern "C" {
#include <di/di.h> #include <di/di.h>
}
#endif #endif
#include "snes9xGX.h" #include "snes9xGX.h"

View File

@ -578,8 +578,8 @@ void NGCReportButtons ()
userInput[i].pad.btns_h & PAD_BUTTON_X && userInput[i].pad.btns_h & PAD_BUTTON_X &&
userInput[i].pad.btns_h & PAD_BUTTON_Y userInput[i].pad.btns_h & PAD_BUTTON_Y
) || ) ||
(userInput[i].wpad.btns_d & WPAD_BUTTON_HOME) || (userInput[i].wpad.btns_h & WPAD_BUTTON_HOME) ||
(userInput[i].wpad.btns_d & WPAD_CLASSIC_BUTTON_HOME) (userInput[i].wpad.btns_h & WPAD_CLASSIC_BUTTON_HOME)
) )
{ {
ConfigRequested = 1; // go to the menu ConfigRequested = 1; // go to the menu

View File

@ -18,6 +18,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include <ogc/lwp_watchdog.h>
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
@ -41,13 +42,6 @@ extern u32 FrameTimer;
long long prev; long long prev;
long long now; long long now;
extern "C" {
long long gettime();
u32 diff_usec(long long start,long long end);
}
/*** Miscellaneous Functions ***/ /*** Miscellaneous Functions ***/
void void
S9xMessage (int /*type */ , int /*number */ , const char *message) S9xMessage (int /*type */ , int /*number */ , const char *message)