diff options
-rw-r--r-- | Alc/ALc.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1364,6 +1364,7 @@ ALC_API ALCvoid ALC_APIENTRY alcGetIntegerv(ALCdevice *device,ALCenum param,ALsi else { ALuint64 t = ALCdevice_GetTime(device); + t -= t%device->TimeRes; data[0] = t&0xffffffff; data[1] = t>>32; } |