diff --git a/README.md b/README.md index e192a74e..6270829f 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,7 @@ ## Some notes: - (Switch) Only **[Atmosphère](https://github.com/Atmosphere-NX/Atmosphere)** is supported. -- (Switch) For Atmosphère 0.10.2 and up, add `enable_deprecated_hid_mitm = u8!0x1` in `sdmc:/atmosphere/config/system_settings.ini` under `[Atmosphere]` (see [#111](https://github.com/LukeZGD/DDLC-LOVE/issues/111)) -- (3DS) Only the **latest [Luma3DS](https://github.com/AuroraWright/Luma3DS)** is supported. -- (3DS) Make sure that `dspfirm.cdc` is dumped for audio to work (use [DSP1](https://github.com/zoogie/DSP1/releases)) -- DDLC-LOVE is only fully supported on Nintendo Switch and Sony PS Vita. For other systems, see [#123](https://github.com/LukeZGD/DDLC-LOVE/issues/123) +- On the latest versions, DDLC-LOVE is only supported on Nintendo Switch and Sony PS Vita. Support for PSP, PS3, and 3DS has been removed. For these systems, go to [v1.1.8-2](https://github.com/LukeZGD/DDLC-LOVE/releases/tag/v1.1.8-2) ## Usage: - **Switch** - Run the `.nro` with [Atmosphère](https://github.com/Atmosphere-NX/Atmosphere) title takeover functionality. Other methods can be found [here](https://turtlep.github.io/LovePotion/wiki/#/packaging) diff --git a/game/main.lua b/game/main.lua index 5d2afb2b..f6092228 100644 --- a/game/main.lua +++ b/game/main.lua @@ -1,4 +1,4 @@ -dversion = 'v1.1.8-3' +dversion = 'v1.1.8-4' dvertype = '' --put 'Test' for test mode print("DDLC-LOVE "..dversion..' '..dvertype) diff --git a/game/states/splash.lua b/game/states/splash.lua index 0a19b07a..c22761e8 100644 --- a/game/states/splash.lua +++ b/game/states/splash.lua @@ -128,7 +128,7 @@ end function drawSplashChar() lg.push() - lg.scale(tlp.scale) + lg.scale(tlp.scale,tlp.scale) lg.draw(menu_art_y,tlp.yx/tlp.scale,tlp.yy/tlp.scale) lg.draw(menu_art_n,tlp.nx/tlp.scale,tlp.ny/tlp.scale) lg.draw(menu_art_m,tlp.mx/tlp.scale,tlp.my/tlp.scale)