[Scummvm-git-logs] scummvm branch-2-6 -> db1107ed2ebc61b8e8099880121cf456eb82d665
ccawley2011
noreply at scummvm.org
Sun Jul 31 21:02:08 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
db1107ed2e RISCOS: Add more space to Wimp slot when not using makerun
Commit: db1107ed2ebc61b8e8099880121cf456eb82d665
https://github.com/scummvm/scummvm/commit/db1107ed2ebc61b8e8099880121cf456eb82d665
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2022-07-31T22:01:57+01:00
Commit Message:
RISCOS: Add more space to Wimp slot when not using makerun
We do the same as makerun: size of ELF + 32K
Changed paths:
backends/platform/sdl/riscos/riscos.mk
diff --git a/backends/platform/sdl/riscos/riscos.mk b/backends/platform/sdl/riscos/riscos.mk
index aa97bd9e652..b9c8d340fe2 100644
--- a/backends/platform/sdl/riscos/riscos.mk
+++ b/backends/platform/sdl/riscos/riscos.mk
@@ -18,7 +18,7 @@ ifdef MAKERUN
$(MAKERUN) $(APP_NAME)/scummvm,ff8 ${srcdir}/dists/riscos/!Run,feb $(APP_NAME)/!Run,feb
else
cp ${srcdir}/dists/riscos/!Run,feb $(APP_NAME)/!Run,feb
- sed -i -e "s/WIMPSLOT/WimpSlot -min `du -k $(APP_NAME)/scummvm,ff8 | cut -f1`K/g" $(APP_NAME)/!Run,feb
+ sed -i -e "s/WIMPSLOT/WimpSlot -min $$(($$(du -k $(EXECUTABLE) | cut -f1) + 32))K/g" $(APP_NAME)/!Run,feb
endif
ifeq ($(APP_NAME),$(BASE_APP_NAME))
cp ${srcdir}/dists/riscos/!Boot,feb $(APP_NAME)/!Boot,feb
More information about the Scummvm-git-logs
mailing list