Progress on Wii games on Linux! Instead of hanging, it now gets far
enough to render a black frame before it crashes. I don't have time right now to track down the crash, but I figure this is at least an improvement. Note that "#pragma pack" is an msvc extension, but gcc supports it. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2092 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
4649416822
commit
d8f4785772
|
@ -1,10 +1,7 @@
|
|||
#ifndef _NETBT_HCI_H_
|
||||
#define _NETBT_HCI_H_
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#pragma pack(push, 1)
|
||||
#endif
|
||||
|
||||
|
||||
typedef u8 uint8_t;
|
||||
#ifdef _WIN32
|
||||
|
@ -2554,8 +2551,6 @@ struct SHCIEventLinkKeyNotification
|
|||
}
|
||||
#endif
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#pragma pack(pop)
|
||||
#endif
|
||||
#pragma pack(pop)
|
||||
|
||||
#endif /* _NETBT_HCI_H */
|
||||
|
|
Loading…
Reference in New Issue