mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Get rid of ununused variable
This commit is contained in:
parent
afa99db9dc
commit
c0e447a3af
1 changed files with 1 additions and 2 deletions
|
@ -1251,12 +1251,11 @@ static void retroarch_validate_cpu_features(void)
|
|||
**/
|
||||
bool retroarch_main_init(int argc, char *argv[])
|
||||
{
|
||||
int sjlj_ret;
|
||||
bool *verbosity = NULL;
|
||||
|
||||
retroarch_init_state();
|
||||
|
||||
if ((sjlj_ret = setjmp(error_sjlj_context)) > 0)
|
||||
if (setjmp(error_sjlj_context) > 0)
|
||||
{
|
||||
RARCH_ERR("Fatal error received in: \"%s\"\n", error_string);
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue