mirror of
https://github.com/dborth/snes9xgx.git
synced 2025-04-06 11:57:08 +02:00
fix shift key, game save bug
This commit is contained in:
parent
398cafd849
commit
69270c14ab
@ -46,6 +46,12 @@ Wii homebrew is WiiBrew (www.wiibrew.org).
|
||||
| UPDATE HISTORY |
|
||||
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
|
||||
|
||||
[4.0.9]
|
||||
|
||||
* Fixed "No game saves found." message when there are actually saves.
|
||||
* Fixed shift key on keyboard
|
||||
* Text scrolling works again
|
||||
|
||||
[4.0.8 - July 9, 2009]
|
||||
|
||||
* Faster SMB/USB browsing
|
||||
|
@ -411,7 +411,7 @@ bool ParseDirEntries()
|
||||
* Browse subdirectories
|
||||
**************************************************************************/
|
||||
int
|
||||
ParseDirectory(int method)
|
||||
ParseDirectory(int method, bool waitParse)
|
||||
{
|
||||
char fulldir[MAXPATHLEN];
|
||||
char msg[128];
|
||||
@ -463,6 +463,16 @@ ParseDirectory(int method)
|
||||
ParseDirEntries(); // index first 20 entries
|
||||
LWP_ResumeThread(parsethread); // index remaining entries
|
||||
|
||||
if(waitParse) // wait for complete parsing
|
||||
{
|
||||
ShowAction("Loading...");
|
||||
|
||||
while(!LWP_ThreadIsSuspended(parsethread))
|
||||
usleep(THREAD_SLEEP);
|
||||
|
||||
CancelAction();
|
||||
}
|
||||
|
||||
return browser.numEntries;
|
||||
}
|
||||
|
||||
|
@ -29,7 +29,7 @@ void HaltDeviceThread();
|
||||
void MountAllFAT();
|
||||
void UnmountAllFAT();
|
||||
bool ChangeInterface(int method, bool silent);
|
||||
int ParseDirectory(int method);
|
||||
int ParseDirectory(int method, bool waitParse = false);
|
||||
void AllocSaveBuffer();
|
||||
void FreeSaveBuffer();
|
||||
u32 LoadFile(char * rbuffer, char *filepath, u32 length, int method, bool silent);
|
||||
|
@ -304,6 +304,8 @@ void GuiKeyboard::Update(GuiTrigger * t)
|
||||
|
||||
char txt[2] = { 0, 0 };
|
||||
|
||||
startloop:
|
||||
|
||||
for(int i=0; i<4; i++)
|
||||
{
|
||||
for(int j=0; j<11; j++)
|
||||
@ -327,7 +329,6 @@ void GuiKeyboard::Update(GuiTrigger * t)
|
||||
if(shift || caps)
|
||||
{
|
||||
kbtextstr[strlen(kbtextstr)] = keys[i][j].chShift;
|
||||
if(shift) shift ^= 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -336,6 +337,13 @@ void GuiKeyboard::Update(GuiTrigger * t)
|
||||
}
|
||||
kbText->SetText(GetDisplayText(kbtextstr));
|
||||
keyBtn[i][j]->SetState(STATE_SELECTED, t->chan);
|
||||
|
||||
if(shift)
|
||||
{
|
||||
shift ^= 1;
|
||||
update = true;
|
||||
goto startloop;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1626,7 +1626,7 @@ static int MenuGameSaves(int action)
|
||||
else
|
||||
{
|
||||
strncpy(browser.dir, GCSettings.SaveFolder, 200);
|
||||
ParseDirectory(GCSettings.SaveMethod);
|
||||
ParseDirectory(GCSettings.SaveMethod, true);
|
||||
}
|
||||
|
||||
len = strlen(Memory.ROMFilename);
|
||||
|
Loading…
x
Reference in New Issue
Block a user