for messages to get to log files in libretro version
// dithering phase, lines).
egpu.enhancement_buf_ptr = gpu.mmap(ENHANCEMENT_BUF_SIZE);
if (egpu.enhancement_buf_ptr == NULL || egpu.enhancement_buf_ptr == (void *)(intptr_t)-1) {
- fprintf(stderr, "failed to map enhancement buffer\n");
+ SysPrintf("failed to map enhancement buffer\n");
egpu.enhancement_buf_ptr = NULL;
gpu.get_enhancement_bufer = NULL;
}
gpu_unai.downscale_vram = (le16_t*)gpu.mmap(DOWNSCALE_VRAM_SIZE);
if (gpu_unai.downscale_vram == NULL || gpu_unai.downscale_vram == (le16_t *)(intptr_t)-1) {
- fprintf(stderr, "failed to map downscale buffer\n");
+ SysPrintf("failed to map downscale buffer\n");
gpu_unai.downscale_vram = NULL;
gpu.get_downscale_buffer = NULL;
}