Changed both video plugins to save PNG screenshots. Made GCPad New default in trunk (it already is in stable). Fixed a hack in new wiimote plugin. Other minor changes.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5532 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Jordan Woyak
2010-05-29 10:09:24 +00:00
parent 4f10ded2b6
commit 05ef8231b8
12 changed files with 107 additions and 82 deletions

View File

@ -400,7 +400,11 @@ void Wiimote_Update(int _number)
unsigned int Wiimote_GetAttachedControllers()
{
return 1;
unsigned int attached = 0;
for (unsigned int i=0; i<4; ++i)
if (WiiMoteEmu::WiiMapping[i].Source)
attached |= (1 << i);
return attached;
}