mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-19 00:59:22 +00:00
Fix OAL crash
This commit is contained in:
parent
ac208ce02c
commit
7d30878418
4 changed files with 10 additions and 8 deletions
|
@ -8,15 +8,20 @@
|
|||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
struct ALDEVICEINFO {
|
||||
std::string strDeviceName;
|
||||
int iMajorVersion;
|
||||
int iMinorVersion;
|
||||
unsigned int uiSourceCount;
|
||||
std::vector<std::string> *pvstrExtensions;
|
||||
bool bSelected;
|
||||
} ALDEVICEINFO, *LPALDEVICEINFO;
|
||||
|
||||
ALDEVICEINFO() : iMajorVersion(0), iMinorVersion(0), uiSourceCount(0), pvstrExtensions(NULL), bSelected(false)
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
typedef ALDEVICEINFO *LPALDEVICEINFO;
|
||||
|
||||
class ALDeviceList
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue