1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00

Fixes sound issue in Linux 64bit distros

This commit is contained in:
Fellippe Heitor 2018-09-23 02:50:31 -03:00 committed by GitHub
parent fef142085b
commit d9b3d7ed69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,8 +54,8 @@
typedef unsigned __int64 uint64_t;
typedef signed __int64 int64_t;
#else
typedef unsigned long long uint64_t;
typedef signed long long int64_t;
typedef __uint64_t uint64_t;
typedef __int64_t int64_t;
#endif
#endif