notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28bfade
)
frontend/menu: label can only go with statement
author
Apaczer
<94932128+Apaczer@users.noreply.github.com>
Wed, 2 Apr 2025 12:55:05 +0000
(14:55 +0200)
committer
notaz
<notasas@gmail.com>
Wed, 2 Apr 2025 21:53:29 +0000
(
00:53
+0300)
fix for older gcc
frontend/menu.c
patch
|
blob
|
blame
|
history
diff --git
a/frontend/menu.c
b/frontend/menu.c
index
5975b80
..
99ca592
100644
(file)
--- a/
frontend/menu.c
+++ b/
frontend/menu.c
@@
-2542,7
+2542,6
@@
static void scan_bios_plugins(void)
#ifndef NO_DYLIB
do_plugins:
- char *p;
snprintf(fname, sizeof(fname), "%s/", Config.PluginsDir);
dir = opendir(fname);
if (dir == NULL) {
@@
-2552,6
+2551,7
@@
do_plugins:
while (1) {
void *h, *tmp;
+ char *p;
errno = 0;
ent = readdir(dir);