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
hatari
Commits
a4f9786c
Commit
a4f9786c
authored
Oct 16, 2020
by
bbbradsmith
Browse files
add fast floppy option and enable by default for faster startup
parent
72886325
Changes
2
Hide whitespace changes
Inline
Side-by-side
libretro/cmdline.c
View file @
a4f9786c
...
...
@@ -13,6 +13,7 @@ extern int hmain(int argc, char *argv[]);
void
parse_cmdline
(
const
char
*
argv
);
// Global variables
extern
bool
hatari_fastfdc
;
extern
bool
hatari_borders
;
extern
char
hatari_frameskips
[
2
];
...
...
@@ -49,6 +50,8 @@ int pre_main(const char *argv)
Add_Option
(
"hatari"
);
Add_Option
(
"--statusbar"
);
Add_Option
(
"0"
);
Add_Option
(
"--fastfdc"
);
Add_Option
(
hatari_fastfdc
==
true
?
"1"
:
"0"
);
Add_Option
(
"--borders"
);
Add_Option
(
hatari_borders
==
true
?
"1"
:
"0"
);
Add_Option
(
"--frameskips"
);
...
...
libretro/libretro.c
View file @
a4f9786c
...
...
@@ -60,6 +60,7 @@ unsigned int video_config = 0;
int
CHANGE_RATE
=
0
,
CHANGEAV_TIMING
=
0
;
float
FRAMERATE
=
50
.
0
,
SAMPLERATE
=
44100
.
0
;
bool
hatari_fastfdc
=
true
;
bool
hatari_borders
=
true
;
char
hatari_frameskips
[
2
];
int
firstpass
=
1
;
...
...
@@ -102,7 +103,19 @@ void retro_set_environment(retro_environment_t cb)
static
struct
retro_core_option_definition
core_options
[]
=
{
// Video
// Floppy speed
{
"hatari_fastfdc"
,
"Fast floppy access"
,
"Needs restart"
,
{
{
"true"
,
"enabled"
},
{
"false"
,
"disabled"
},
{
NULL
,
NULL
},
},
"true"
},
// Video
{
"hatari_video_hires"
,
"High resolution"
,
...
...
@@ -112,7 +125,7 @@ void retro_set_environment(retro_environment_t cb)
{
"false"
,
"disabled"
},
{
NULL
,
NULL
},
},
"
yes
"
"
true
"
},
{
"hatari_video_crop_overscan"
,
...
...
@@ -184,6 +197,17 @@ static void update_variables(void)
{
struct
retro_variable
var
=
{
0
};
// Floppy
var
.
key
=
"hatari_fastfdc"
;
var
.
value
=
NULL
;
hatari_fastfdc
=
false
;
if
(
environ_cb
(
RETRO_ENVIRONMENT_GET_VARIABLE
,
&
var
)
&&
var
.
value
)
{
if
(
strcmp
(
var
.
value
,
"true"
)
==
0
)
hatari_fastfdc
=
true
;
}
// Video
var
.
key
=
"hatari_video_hires"
;
var
.
value
=
NULL
;
...
...
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