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
RACE
Commits
b8264bba
Commit
b8264bba
authored
Nov 02, 2021
by
Libretro-Admin
Browse files
Remove stdio.h includes
parent
2af96d0f
Pipeline
#124682
passed with stages
in 7 minutes and 18 seconds
Changes
7
Pipelines
289
Hide whitespace changes
Inline
Side-by-side
cz80.c
View file @
b8264bba
...
...
@@ -6,7 +6,6 @@
/* */
/********************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
cz80_support.c
View file @
b8264bba
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include <stdlib.h>
#include <string.h>
#include "race-memory.h"
#include "cz80.h"
...
...
flash.c
View file @
b8264bba
...
...
@@ -13,7 +13,6 @@
* for emulation of NGPC carts
*/
#include <stdio.h>
#include <string.h>
#include <streams/file_stream.h>
#ifdef _WIN32
...
...
@@ -330,9 +329,6 @@ void writeSaveGameFile(void)
}
filestream_close
(
ngfFile
);
/* char msg[50];
sprintf(msg, "Saved File %s", ngfFilename);
printTTF(msg, 0, 100, yellow, 1, actualScreen, 1);*/
needToWriteFile
=
0
;
#ifdef TARGET_GP2X
sync
();
...
...
libretro/libretro.c
View file @
b8264bba
#include "libretro.h"
#include "libretro_core_options.h"
#include "log.h"
#include <stdio.h>
#include <string.h>
#include <streams/file_stream.h>
...
...
libretro/log.c
View file @
b8264bba
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
...
...
@@ -18,20 +17,12 @@ void init_log(retro_environment_t environ_cb)
void
handle_error
(
const
char
*
error
)
{
char
str
[
256
];
if
(
error
)
{
sprintf
(
str
,
"Error: %s"
,
error
);
log_cb
(
RETRO_LOG_ERROR
,
str
);
}
log_cb
(
RETRO_LOG_ERROR
,
"Error: %s
\n
"
,
error
);
}
void
handle_info
(
const
char
*
info
)
{
char
str
[
256
];
if
(
info
)
{
sprintf
(
str
,
"Info: %s
\n
"
,
info
);
log_cb
(
RETRO_LOG_INFO
,
str
);
}
log_cb
(
RETRO_LOG_INFO
,
"Info: %s
\n
"
,
info
);
}
main.c
View file @
b8264bba
...
...
@@ -6,8 +6,6 @@
// additional informations.
//---------------------------------------------------------------------------
#include <stdio.h>
#include "types.h"
#include "main.h"
...
...
race-memory.c
View file @
b8264bba
...
...
@@ -14,11 +14,6 @@
* TODO:
*/
#include <stdio.h>
#if 0
#include <streams/file_stream.h>
#endif
#include "race-memory.h"
#include "types.h"
#include "input.h"
/* for Gameboy Input */
...
...
@@ -452,7 +447,6 @@ void mem_init(void)
{
//this branch doesn't seem to work for some games (Puzzle Bobble)
realBIOSloaded
=
1
;
printf
(
"BIOS file loaded. This path is fairly untested!
\n
"
);
cpurom
[
0x3202
]
=
0xf4
;
//from Koyote
cpurom
[
0x3203
]
=
0x6b
;
//from Koyote
...
...
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