mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-13 06:10:55 +00:00
Merge pull request #1321 from Swizzy/master
Some output fixes and a crash fix
This commit is contained in:
commit
2d407625b3
@ -117,7 +117,7 @@ slock_t *slock_new(void)
|
||||
if (!lock)
|
||||
return NULL;
|
||||
|
||||
lock->lock = CreateMutex(NULL, FALSE, "");
|
||||
lock->lock = CreateMutex(NULL, FALSE, "RetroArchMutex");
|
||||
if (!lock->lock)
|
||||
{
|
||||
free(lock);
|
||||
|
@ -95,7 +95,7 @@ static int menu_info_screen_iterate(unsigned action)
|
||||
static int menu_start_screen_iterate(unsigned action)
|
||||
{
|
||||
unsigned i;
|
||||
char msg[PATH_MAX];
|
||||
char msg[PATH_MAX * 2];
|
||||
|
||||
if (!driver.menu)
|
||||
return 0;
|
||||
@ -142,9 +142,7 @@ static int menu_start_screen_iterate(unsigned action)
|
||||
"Load a libretro core (Core).\n"
|
||||
"Load a content file (Load Content). \n"
|
||||
" \n"
|
||||
|
||||
"See Path Options to set directories\n"
|
||||
"for faster access to files.\n"
|
||||
"See Path Options to set directories for faster access to files.\n"
|
||||
" \n"
|
||||
|
||||
"Press Accept/OK to continue.",
|
||||
|
Loading…
x
Reference in New Issue
Block a user