Commit 2a765d63 authored by David Reid's avatar David Reid

Move struct ma_lcg to a more appropriate location.

parent 90ae3091
...@@ -1871,6 +1871,11 @@ typedef struct ...@@ -1871,6 +1871,11 @@ typedef struct
void (* onFree)(void* p, void* pUserData); void (* onFree)(void* p, void* pUserData);
} ma_allocation_callbacks; } ma_allocation_callbacks;
typedef struct
{
ma_int32 state;
} ma_lcg;
/************************************************************************************************************************************************************** /**************************************************************************************************************************************************************
...@@ -5441,11 +5446,6 @@ MA_API ma_result ma_waveform_set_sample_rate(ma_waveform* pWaveform, ma_uint32 s ...@@ -5441,11 +5446,6 @@ MA_API ma_result ma_waveform_set_sample_rate(ma_waveform* pWaveform, ma_uint32 s
typedef struct
{
ma_int32 state;
} ma_lcg;
typedef enum typedef enum
{ {
ma_noise_type_white, ma_noise_type_white,
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment