1
General Jo Engine Help / Re: Help me!
« on: February 23, 2021, 11:32:27 pm »
That is not Jo Engine code and it cannot be the code that is displaying the sonic image.
Look at the printf sample.
You want something like this:
Although the Sega Saturn is not the best system to learn to code on.
Look at the printf sample.
You want something like this:
Code: [Select]
#include <jo/jo.h>
void my_draw(void) {
jo_set_printf_color_index(JO_COLOR_INDEX_White);
jo_printf(0, 0, "Hello World");
}
void jo_main(void) {
jo_core_init(JO_COLOR_Black);
jo_core_add_callback(my_draw);
jo_core_run();
}
Although the Sega Saturn is not the best system to learn to code on.