Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
beetle-pce-libretro
Commits
c1698a2a
Commit
c1698a2a
authored
Sep 19, 2020
by
Libretro-Admin
Browse files
Cleanups
parent
7a0fdffa
Changes
3
Hide whitespace changes
Inline
Side-by-side
libretro.cpp
View file @
c1698a2a
...
...
@@ -824,23 +824,6 @@ void MDFN_PrintError(const char *format, ...)
va_end
(
ap
);
}
void
MDFN_DebugPrintReal
(
const
char
*
file
,
const
int
line
,
const
char
*
format
,
...)
{
char
*
temp
;
va_list
ap
;
va_start
(
ap
,
format
);
temp
=
(
char
*
)
malloc
(
4096
*
sizeof
(
char
));
vsnprintf
(
temp
,
4096
,
format
,
ap
);
fprintf
(
stderr
,
"%s:%d %s
\n
"
,
file
,
line
,
temp
);
free
(
temp
);
va_end
(
ap
);
}
static
MDFNGI
*
game
;
struct
retro_perf_callback
perf_cb
;
...
...
mednafen/general.h
View file @
c1698a2a
...
...
@@ -3,10 +3,6 @@
#include <string>
extern
uint32
MDFN_RoundUpPow2
(
uint32
);
void
GetFileBase
(
const
char
*
f
);
// File-inclusion for-read-only path, for PSF and CUE/TOC sheet usage.
bool
MDFN_IsFIROPSafe
(
const
std
::
string
&
path
);
...
...
mednafen/mednafen.h
View file @
c1698a2a
...
...
@@ -50,8 +50,6 @@ void MDFN_PrintError(const char *format, ...);
void
MDFN_printf
(
const
char
*
format
,
...);
void
MDFN_DispMessage
(
const
char
*
format
,
...);
void
MDFN_DebugPrintReal
(
const
char
*
file
,
const
int
line
,
const
char
*
format
,
...);
void
MDFN_LoadGameCheats
(
void
*
override
);
void
MDFN_FlushGameCheats
(
int
nosave
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment