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
Fmsx
Commits
01038763
Commit
01038763
authored
Nov 06, 2021
by
Libretro-Admin
Browse files
buildfix
parent
456c9189
Pipeline
#64783
failed with stages
in 1 minute and 30 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
libretro.c
View file @
01038763
...
...
@@ -6,6 +6,8 @@
#include <string.h>
#include <stdint.h>
#include <streams/file_stream.h>
#include "MSX.h"
#include "EMULib.h"
#include "Sound.h"
...
...
@@ -265,13 +267,13 @@ void retro_get_system_info(struct retro_system_info *info)
void
retro_get_system_av_info
(
struct
retro_system_av_info
*
info
)
{
info
->
geometry
.
base_width
=
image_buffer_width
;
info
->
geometry
.
base_height
=
image_buffer_height
;
info
->
geometry
.
max_width
=
640
;
info
->
geometry
.
max_height
=
480
;
info
->
geometry
.
base_width
=
image_buffer_width
;
info
->
geometry
.
base_height
=
image_buffer_height
;
info
->
geometry
.
max_width
=
640
;
info
->
geometry
.
max_height
=
480
;
info
->
geometry
.
aspect_ratio
=
0
;
info
->
timing
.
fps
=
fps
;
info
->
timing
.
sample_rate
=
SND_RATE
;
info
->
timing
.
fps
=
fps
;
info
->
timing
.
sample_rate
=
SND_RATE
;
}
void
retro_init
(
void
)
...
...
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