ducalex
ducalex
I think you forgot to add your target to this file: https://github.com/ducalex/retro-go/blob/master/components/retro-go/config.h Presumably ```c #elif defined(RG_TARGET_S3) #include "targets/s3/config.h" ```
The DOIT DEVIT V1 seems to use the ESP32-WROOM module which doesn't have enough RAM for retro-go. So even if you get it to build most emulators won't work. But...
I don't understand how this error could occur, but you can try working around it by modifying rg_storage.h: Change that line: `char path[RG_PATH_MAX + 1];` to `char path[256];`
> I am working on a working version of doom multiplayer using a central server. I already have the multiplayer working but i am still fixing some small errors like...
To find out why you're stuck on the the hourglass you would need to check the serial log as a first step. Any serial console will do but you can...
Right now retro-go doesn't have the fonts to cover Chinese so it cannot work... Do you know what UTF-8 ranges are needed by your translations? I can probably update our...
Thanks for your work! 92542 added bytes per app is a lot. I'd like to add Chinese support, but we'll have to either: - Make Chinese support optional at build...
> After enabling CONFIG_FATFS_API_ENCODING_UTF_8=y, the codepage—whether cp437 or cp936—will correctly display Chinese characters. Thanks for testing, I confirm that it works and it doesn't increase binary size so I've added...
J2ME might be possible (I don't really know), but I don't think that Java proper is possible unfortunately. I'm happy to leave this issue open if someone else wants to...
Can you add the font to the PR? Both .c and .ttf in case we ever need to regenerate it.