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
bk-emulator
Commits
cf666048
Commit
cf666048
authored
Jan 31, 2020
by
Vladimir Serbinenko
Browse files
Rename scr_init
scr_init conflicts with SDL, rename to bk_scr_init
parent
bab7101b
Changes
3
Hide whitespace changes
Inline
Side-by-side
defines.h
View file @
cf666048
...
...
@@ -157,7 +157,7 @@ int load_src(register pdp_regs *p, d_word *data);
#define PDP_FULL_MEM_SIZE (64 * 512)
/* 0 - 177777 */
extern
void
line_init
(
void
);
void
scr_init
(
void
);
void
bk_
scr_init
(
void
);
void
boot_init
(
void
);
void
timer_init
(
void
);
void
printer_init
(
void
);
...
...
scr-sdl.c
View file @
cf666048
...
...
@@ -185,7 +185,7 @@ setup_bases() {
}
void
scr_init
()
{
bk_
scr_init
()
{
static
char
init_done
=
0
;
int
i
;
...
...
standalone.c
View file @
cf666048
...
...
@@ -181,7 +181,7 @@ by the environment variable BK_PATH.\n"), romdir );
ev_init
();
/* initialize the event system */
sim_init
();
/* ...the simulated cpu */
mem_init
();
/* ...main memory */
scr_init
();
/* video display */
bk_
scr_init
();
/* video display */
boot_init
();
/* ROM blocks */
if
(
terak
)
{
// setup_terak();
...
...
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