tidying up
This commit is contained in:
parent
b0ffcca60a
commit
588d64c9f5
4 changed files with 5 additions and 3 deletions
|
|
@ -3,6 +3,6 @@
|
||||||
MinUI is a focused custom launcher for the Anbernic RG35XX (and possibly others to come).
|
MinUI is a focused custom launcher for the Anbernic RG35XX (and possibly others to come).
|
||||||
|
|
||||||
<img src="github/minui-main.png" width=320 /> <img src="github/minui-menu-gbc.png" width=320 />
|
<img src="github/minui-main.png" width=320 /> <img src="github/minui-menu-gbc.png" width=320 />
|
||||||
See [more screenshots](github/)
|
See [more screenshots](github/).
|
||||||
|
|
||||||
You can [grab the latest version here](https://github.com/shauninman/union-minui/releases) (once released).
|
You can [grab the latest version here](https://github.com/shauninman/union-minui/releases) (once released).
|
||||||
2
makefile
2
makefile
|
|
@ -23,6 +23,8 @@ RELEASE_NAME=$(RELEASE_BASE)-$(RELEASE_DOT)
|
||||||
|
|
||||||
all: lib sys all-cores tools dtb bundle readmes zip report
|
all: lib sys all-cores tools dtb bundle readmes zip report
|
||||||
|
|
||||||
|
repack: bundle readmes zip report
|
||||||
|
|
||||||
lib:
|
lib:
|
||||||
cd ./src/libmsettings && make
|
cd ./src/libmsettings && make
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ if [ -f $UPDATE_PATH ]; then
|
||||||
rm -f $UPDATE_PATH
|
rm -f $UPDATE_PATH
|
||||||
|
|
||||||
# the updated system finishes the install/update
|
# the updated system finishes the install/update
|
||||||
$SYSTEM_PATH/bin/install.sh
|
$SYSTEM_PATH/bin/install.sh # &> $SDCARD_PATH/install.txt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ROOTFS_IMAGE=$SYSTEM_PATH/rootfs.ext2
|
ROOTFS_IMAGE=$SYSTEM_PATH/rootfs.ext2
|
||||||
|
|
|
||||||
|
|
@ -302,7 +302,7 @@ SDL_Surface* GFX_resize(int w, int h, int pitch) {
|
||||||
void GFX_flip(SDL_Surface* screen) {
|
void GFX_flip(SDL_Surface* screen) {
|
||||||
// point framebuffer at the first line of the backbuffer
|
// point framebuffer at the first line of the backbuffer
|
||||||
gfx.vinfo.yoffset = gfx.page * PAGE_HEIGHT;
|
gfx.vinfo.yoffset = gfx.page * PAGE_HEIGHT;
|
||||||
if (ioctl(gfx.fb0_fd, gfx.resized ? FBIOPUT_VSCREENINFO : FBIOPAN_DISPLAY, &gfx.vinfo)) LOG_info("FBIOPUT_VSCREENINFO failed %s\n", strerror(errno));
|
if (ioctl(gfx.fb0_fd, gfx.resized ? FBIOPUT_VSCREENINFO : FBIOPAN_DISPLAY, &gfx.vinfo)) LOG_info("%s failed %s\n", (gfx.resized ? "FBIOPUT_VSCREENINFO" : "FBIOPAN_DISPLAY"), strerror(errno));
|
||||||
gfx.resized = 0;
|
gfx.resized = 0;
|
||||||
|
|
||||||
if (gfx.vsync!=VSYNC_OFF) {
|
if (gfx.vsync!=VSYNC_OFF) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue