fix black screen home button issue

This commit is contained in:
dborth 2009-05-21 05:56:45 +00:00
parent 88cd91824e
commit 176c4c95bd
3 changed files with 5 additions and 13 deletions

View File

@ -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
¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤ ¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤

View File

@ -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])
) )
{ {

View File

@ -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"