How to change the default GameBoy resolution? #114
-
Hi! Thanks for writing this open source emulator. I am using the same LCD module (base on ili9225 driver). But I want to know if it is possible to increase the screen area. The 2-inch LCD screen is 220176, but GameBoy emulator default resolution is 160144. Therefore, there is empty space on the edge of the screen. I wonder if it is supported to adjust the resolution in the emulator? If so, I can probably consider to swap a bigger screen and write a new driver. Thank you again! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
1 more thing, I found that it can't save the progress after power off. For example, if I quit the emulator, and reload the game (pokemon red), it still saves my progess. But after power off/on, all progress will be lost. Is there a way to save game progress somewhere? maybe external memory, like SD card |
Beta Was this translation helpful? Give feedback.
-
Peanut-GB renders the display at the exact resolution of the Game Boy. You need to use some scaling algorithm, like bilinear or nearest-neighbour to fill your LCD screen. Peanut-GB does not have a scaling feature embedded within it to do this for you. |
Beta Was this translation helpful? Give feedback.
Peanut-GB renders the display at the exact resolution of the Game Boy. You need to use some scaling algorithm, like bilinear or nearest-neighbour to fill your LCD screen. Peanut-GB does not have a scaling feature embedded within it to do this for you.