mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-28 02:30:35 +00:00
Show GL hex error in hex
Fixes an issue whereby a hexadecimal error value was being printed in decimal. Tested on a RPi that suffers from issue 6078. Signed-off-by: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>
This commit is contained in:
parent
45c50c604b
commit
87a7c0f426
@ -1038,8 +1038,8 @@ static bool gl2_renderchain_init_hw_render(
|
||||
status = gl2_check_fb_status(RARCH_GL_FRAMEBUFFER);
|
||||
if (status != RARCH_GL_FRAMEBUFFER_COMPLETE)
|
||||
{
|
||||
RARCH_ERR("[GL]: Failed to create HW render FBO #%u, error: 0x%u.\n",
|
||||
i, (unsigned)status);
|
||||
RARCH_ERR("[GL]: Failed to create HW render FBO #%u, error: 0x%04x.\n",
|
||||
i, status);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user