Search found 5 matches

by S. P. Gardebiter
Sun Dec 29, 2013 4:18 pm
Forum: SGDK
Topic: can't get SGDK to work with C::B (Nothing to be done ?)
Replies: 11
Views: 8779

If it still doesn't work try to reinstall Code::Blocks and make sure it's deinstalled completly before installing it again (deleting appdata and so on).
I've had the same problem before and after doing so everything worked.
by S. P. Gardebiter
Sat Nov 30, 2013 7:42 am
Forum: SGDK
Topic: Examples of using Echo with SGDK?
Replies: 16
Views: 24649

Yeah, there a couple different ways that PCM samples are represented in VGM files. One way is much less efficient and tends to have the samples play way too slowly with the VGM player in SGDK.

Good to know. But what I mean is, for example, that is one of the pieces of information that is really ...
by S. P. Gardebiter
Fri Nov 29, 2013 12:16 pm
Forum: SGDK
Topic: Examples of using Echo with SGDK?
Replies: 16
Views: 24649

After many hours of frustration and trying destroy my computer euqipment, I've managed to make (most stuff) work.

main.c

#include "main.h"

int main(void)
{

// Initialize Echo
echo_init(Instruments); // Load Instruments
echo_set_pcm_rate(4); // Default PCM Rate
echo_play_bgm(testflute ...
by S. P. Gardebiter
Tue Nov 19, 2013 1:59 am
Forum: SGDK
Topic: Examples of using Echo with SGDK?
Replies: 16
Views: 24649

I already read some of your threads, when I was searching for a solution before. :)
Didn't help me though.

#define uint8_t u8
#define uint16_t u16
#define uint32_t u32
#define int8_t s8
#define int16_t s16
#define int32_t s32

To make these lines of code work I have to include genesis.h in echo.c ...
by S. P. Gardebiter
Tue Nov 19, 2013 12:50 am
Forum: SGDK
Topic: Examples of using Echo with SGDK?
Replies: 16
Views: 24649

Examples of using Echo with SGDK?

Hello,
I'm trying to figure out how to make Echo work with SGDK and it's certainly not easy. Trying to include and compiling it is not easy as well, not only the missing stdint.h is causing trouble but I get weird compiler errors when I include it (for example .h files from recourses suddently do ...