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
libretro-chailove
Commits
2c89d788
Unverified
Commit
2c89d788
authored
Jan 03, 2019
by
RobLoach
Committed by
GitHub
Jan 03, 2019
Browse files
Fix max_width and max_height
parent
67e775e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libretro.cpp
View file @
2c89d788
...
...
@@ -208,7 +208,7 @@ void retro_get_system_av_info(struct retro_system_av_info *info) {
info
->
geometry
.
base_width
=
width
;
info
->
geometry
.
base_height
=
height
;
info
->
geometry
.
max_width
=
width
;
info
->
geometry
.
max_height
=
width
;
info
->
geometry
.
max_height
=
height
;
info
->
geometry
.
aspect_ratio
=
static_cast
<
float
>
(
width
)
/
static_cast
<
float
>
(
height
);
info
->
timing
.
fps
=
60.0
;
...
...
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