Also: You're still checking for INKEY$ and responding to it. I highly recommend that you decide on a method for input and stick to it. Reading the keyboard as you are now is prone to give you more headaches later on. Either go with the _KEYDOWN/_KEYHIT duo *or* INKEY$.
Hi SirCrow,
Very nice game. I played it several times in a row. Thanks for sharing.
In file included from ../../src/minimp3.c:24:0:
../../src/libc.h:57:36: error: conflicting types for ‘uint64_t’
typedef unsigned long long uint64_t;
^~~~~~~~
In file included from /usr/include/stdint.h:37:0,
from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9,
from ../../src/libc.h:26,
from ../../src/minimp3.c:24:
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:27:20: note: previous declaration of ‘uint64_t’ was here
typedef __uint64_t uint64_t;
^~~~~~~~
In file included from ../../src/minimp3.c:24:0:
../../src/libc.h:58:37: error: conflicting types for ‘int64_t’
typedef signed long long int64_t;
^~~~~~~
In file included from /usr/include/stdint.h:34:0,
from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9,
from ../../src/libc.h:26,
from ../../src/minimp3.c:24:
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:27:19: note: previous declaration of ‘int64_t’ was here
typedef __int64_t int64_t;
^~~~~~~
ar: temp/minimp3.o: Adresář nebo soubor neexistuje
g++: error: parts/audio/decode/mp3_mini/os/lnx/src.a: Adresář nebo soubor neexistuje <- this here is "folder or file not exists"
Good to hear! Hope it works for SirCrow as well.
I wonder if other Linux distributions are also having issues with MP3 audio... Does anybody else have something to report?
I'm replying in the dark here as I neither have problems with MP3 audio on my Ubuntu virtual machine nor have I tried the change I'm proposing, but maybe if you edit the file internal/c/parts/audio/decode/mp3_mini/src/libc.h and make lines 57 and 58 read:Code: QB64: [Select]
typedef __uint64_t uint64_t; typedef __int64_t int64_t;
MAYBE that'll work.
Again, not tried or confirmed. Just a guess. It could wreak havoc too.