mirror of
https://github.com/dborth/vbagx.git
synced 2024-12-27 03:01:50 +01:00
fix black screen home button issue
This commit is contained in:
parent
88cd91824e
commit
176c4c95bd
@ -156,7 +156,7 @@ With it you can play GBA/Game Boy Color/Game Boy games on your Wii/GameCube.
|
|||||||
|
|
||||||
[1.0.1 - September 18, 2008]
|
[1.0.1 - September 18, 2008]
|
||||||
* GBA games now run at full speed
|
* GBA games now run at full speed
|
||||||
* Menu improvements, with spiffy new background - thanks brakken!
|
* Menu improvements, with spiffy new background
|
||||||
* Fixed L/R buttons - they work now
|
* Fixed L/R buttons - they work now
|
||||||
|
|
||||||
[1.0.0 - September 16, 2008]
|
[1.0.0 - September 16, 2008]
|
||||||
@ -209,8 +209,7 @@ Gamecube:
|
|||||||
--------------------------------
|
--------------------------------
|
||||||
You can load VBAGX via sdload and an SD card in slot A, or by streaming
|
You can load VBAGX via sdload and an SD card in slot A, or by streaming
|
||||||
it to your Gamecube, or by booting a bootable DVD with VBAGX on it.
|
it to your Gamecube, or by booting a bootable DVD with VBAGX on it.
|
||||||
This document doesn't cover how to do any of that. A good source for information
|
This document doesn't cover how to do any of that.
|
||||||
on these topics is the tehskeen forums: http://www.tehskeen.com/forums/
|
|
||||||
|
|
||||||
×—–—–—–—– –—–—–—–—–—–—–—–—–—–— —–—–—–—–—–—–—–—-—–-–•¬
|
×—–—–—–—– –—–—–—–—–—–—–—–—–—–— —–—–—–—–—–—–—–—-—–-–•¬
|
||||||
|0O×øo· INSTRUCTIONS ·oø×O0|
|
|0O×øo· INSTRUCTIONS ·oø×O0|
|
||||||
@ -825,8 +824,5 @@ right analog stick = fast forward
|
|||||||
|
|
||||||
VBAGX Web Site
|
VBAGX Web Site
|
||||||
http://code.google.com/p/vba-wii
|
http://code.google.com/p/vba-wii
|
||||||
|
|
||||||
TehSkeen Support Forums
|
|
||||||
http://www.tehskeen.net
|
|
||||||
|
|
||||||
¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤
|
¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤
|
||||||
|
@ -889,8 +889,8 @@ u32 GetJoy(int pad)
|
|||||||
// request to go back to menu
|
// request to go back to menu
|
||||||
if (
|
if (
|
||||||
(userInput[pad].pad.substickX < -70) ||
|
(userInput[pad].pad.substickX < -70) ||
|
||||||
(userInput[pad].wpad.btns_d & WPAD_BUTTON_HOME) ||
|
(userInput[pad].wpad.btns_h & WPAD_BUTTON_HOME) ||
|
||||||
(userInput[pad].wpad.btns_d & WPAD_CLASSIC_BUTTON_HOME) ||
|
(userInput[pad].wpad.btns_h & WPAD_CLASSIC_BUTTON_HOME) ||
|
||||||
(DownUsbKeys[KB_ESC])
|
(DownUsbKeys[KB_ESC])
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
@ -14,11 +14,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <wiiuse/wpad.h>
|
#include <wiiuse/wpad.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
|
#include <ogc/lwp_watchdog.h>
|
||||||
extern "C" {
|
|
||||||
long long gettime();
|
|
||||||
u32 diff_usec(long long start,long long end);
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "pngu/pngu.h"
|
#include "pngu/pngu.h"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user