mirror of
https://github.com/dborth/snes9xgx.git
synced 2025-01-23 16:41:12 +01:00
minor fixes
This commit is contained in:
parent
a59ecff899
commit
b752684807
10
readme.txt
10
readme.txt
@ -7,7 +7,7 @@
|
||||
::::::::::::::::/ /::--/_______\::.________/::::/ /:::\ _ \::::::×:::
|
||||
:::::::°:::::::/___\:::::::::::::::::::::::::::::/ /::::/__/ \--::::::::
|
||||
°:::::::::::::::::×:::::::::::::::°::::×:::::::::\--/::::::::::::::::::×:::::
|
||||
———————————————————————————————————————————————————————————————————————•ßrK•
|
||||
————————————————————————————————————————————————————————————————————————————
|
||||
|
||||
×—–—–—–—– –—–—–—–—–—–—–—–—–—–— —–—–—–—–—–—–—–—-—–-–•¬
|
||||
|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
|
||||
unsigned code on your Nintendo Wii. The best website for getting started with
|
||||
Wii homebrew is WiiBrew (www.wiibrew.org). Also check out TehSkeen
|
||||
(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.
|
||||
Wii homebrew is WiiBrew (www.wiibrew.org).
|
||||
|
||||
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
|
||||
| FEATURES |
|
||||
@ -649,7 +647,6 @@ changes to the emulator settings again and save them.
|
||||
Snes9x 1.51 Snes9x Team
|
||||
libogc/devkitPPC shagkur & wintermute
|
||||
FreeTypeGX Armin Tamzarian
|
||||
Documentation brakken
|
||||
|
||||
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
|
||||
| LINKS |
|
||||
@ -660,9 +657,6 @@ changes to the emulator settings again and save them.
|
||||
|
||||
Wii Homebrew Community
|
||||
www.wiibrew.org
|
||||
|
||||
SNES9X GX Support Site
|
||||
www.tehskeen.com
|
||||
|
||||
Free (Public Domain) ROMs
|
||||
www.pdroms.de
|
||||
|
@ -18,9 +18,7 @@
|
||||
#include <malloc.h>
|
||||
|
||||
#ifdef HW_RVL
|
||||
extern "C" {
|
||||
#include <di/di.h>
|
||||
}
|
||||
#endif
|
||||
|
||||
#include "snes9xGX.h"
|
||||
|
@ -578,8 +578,8 @@ void NGCReportButtons ()
|
||||
userInput[i].pad.btns_h & PAD_BUTTON_X &&
|
||||
userInput[i].pad.btns_h & PAD_BUTTON_Y
|
||||
) ||
|
||||
(userInput[i].wpad.btns_d & WPAD_BUTTON_HOME) ||
|
||||
(userInput[i].wpad.btns_d & WPAD_CLASSIC_BUTTON_HOME)
|
||||
(userInput[i].wpad.btns_h & WPAD_BUTTON_HOME) ||
|
||||
(userInput[i].wpad.btns_h & WPAD_CLASSIC_BUTTON_HOME)
|
||||
)
|
||||
{
|
||||
ConfigRequested = 1; // go to the menu
|
||||
|
@ -18,6 +18,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <ogc/lwp_watchdog.h>
|
||||
|
||||
#include "snes9x.h"
|
||||
#include "memmap.h"
|
||||
@ -41,13 +42,6 @@ extern u32 FrameTimer;
|
||||
long long prev;
|
||||
long long now;
|
||||
|
||||
extern "C" {
|
||||
|
||||
long long gettime();
|
||||
u32 diff_usec(long long start,long long end);
|
||||
|
||||
}
|
||||
|
||||
/*** Miscellaneous Functions ***/
|
||||
void
|
||||
S9xMessage (int /*type */ , int /*number */ , const char *message)
|
||||
|
Loading…
x
Reference in New Issue
Block a user