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
0642dbd0
Commit
0642dbd0
authored
Nov 14, 2021
by
Cayce
Browse files
also support screen 0 width 80 - 512px wide as well
parent
04a1d830
Changes
1
Hide whitespace changes
Inline
Side-by-side
libretro.c
View file @
0642dbd0
...
...
@@ -602,7 +602,7 @@ void set_image_buffer_size(byte screen_mode)
{
static
Image
fMSX_image
;
if
(
screen_mode
==
6
||
screen_mode
==
7
)
if
(
(
screen_mode
==
6
)
||
(
screen_mode
==
7
)
||
(
screen_mode
==
MAXSCREEN
+
1
))
image_buffer_width
=
WIDTH
<<
1
;
else
image_buffer_width
=
WIDTH
;
...
...
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