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
SquirrelJME
Commits
15349590
Commit
15349590
authored
Feb 26, 2022
by
Stephanie Gawroriski
Browse files
Correct last area check before returning the same graphics.
parent
3be5efb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/midp-lcdui/src/main/java/cc/squirreljme/runtime/lcdui/gfx/DoubleBuffer.java
View file @
15349590
...
...
@@ -75,7 +75,7 @@ public final class DoubleBuffer
// operations
int
lastWidth
=
this
.
_lastWidth
;
int
lastHeight
=
this
.
_lastHeight
;
if
(
__width
==
lastWidth
||
__height
==
lastHeight
)
if
(
__width
==
lastWidth
&&
__height
==
lastHeight
)
return
rv
;
// Otherwise, remember our new screen space and use the graphics it
...
...
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