diff options
author | Arisotura <thetotalworm@gmail.com> | 2022-03-08 12:03:16 +0100 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2022-03-08 12:03:16 +0100 |
commit | fe96944fc096d8a410b75cdd8273987322275510 (patch) | |
tree | 6506fb28e0525d4539f89e05f73759bf355b9a92 | |
parent | 2eec033c72c3afe4beda619297ff66ba97e97472 (diff) |
insert wacky commit message
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | src/frontend/qt_sdl/main.cpp | 2 | ||||
-rw-r--r-- | src/version.h | 2 |
4 files changed, 5 insertions, 10 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b2c2db4..60dac08 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ set(CMAKE_C_STANDARD 11) set(CMAKE_CXX_STANDARD 17) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) -set(MELONDS_VERSION "0.9.3") +set(MELONDS_VERSION "0.9.4") add_compile_definitions(MELONDS_VERSION="${MELONDS_VERSION}") string(REPLACE "." ";" VERSION_LIST ${MELONDS_VERSION}) # For the melon.rc file used on Windows @@ -2,7 +2,7 @@ <h2 align="center"><b>melonDS</b></h2> <p align="center"> <a href="http://melonds.kuribo64.net/" alt="melonDS website"><img src="https://img.shields.io/badge/website-melonds.kuribo64.net-%2331352e.svg"></a> -<a href="http://melonds.kuribo64.net/downloads.php" alt="Release: 0.9.3"><img src="https://img.shields.io/badge/release-0.9.3-%235c913b.svg"></a> +<a href="http://melonds.kuribo64.net/downloads.php" alt="Release: 0.9.4"><img src="https://img.shields.io/badge/release-0.9.4-%235c913b.svg"></a> <a href="https://www.gnu.org/licenses/gpl-3.0" alt="License: GPLv3"><img src="https://img.shields.io/badge/License-GPL%20v3-%23ff554d.svg"></a> <a href="https://kiwiirc.com/client/irc.badnik.net/?nick=IRC-Source_?#melonds" alt="IRC channel: #melonds"><img src="https://img.shields.io/badge/IRC%20chat-%23melonds-%23dd2e44.svg"></a> <br> @@ -19,12 +19,7 @@ The goal is to do things right and fast, akin to blargSNES (but hopefully better ## How to use -melonDS requires BIOS/firmware copies from a DS. Files required: - * bios7.bin, 16KB: ARM7 BIOS - * bios9.bin, 4KB: ARM9 BIOS - * firmware.bin, 128/256/512KB: firmware - -Firmware boot requires a firmware dump from an original DS or DS Lite. +Firmware boot (not direct boot) requires a BIOS/firmware dump from an original DS or DS Lite. DS firmwares dumped from a DSi or 3DS aren't bootable and only contain configuration data, thus they are only suitable when booting games directly. ### Possible firmware sizes diff --git a/src/frontend/qt_sdl/main.cpp b/src/frontend/qt_sdl/main.cpp index 1296bb9..00135b4 100644 --- a/src/frontend/qt_sdl/main.cpp +++ b/src/frontend/qt_sdl/main.cpp @@ -1447,7 +1447,7 @@ MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent) actROMInfo = menu->addAction("ROM info"); connect(actROMInfo, &QAction::triggered, this, &MainWindow::onROMInfo); - actRAMInfo = menu->addAction("RAM info"); + actRAMInfo = menu->addAction("RAM search"); connect(actRAMInfo, &QAction::triggered, this, &MainWindow::onRAMInfo); actTitleManager = menu->addAction("Manage DSi titles"); diff --git a/src/version.h b/src/version.h index e6143c2..f387820 100644 --- a/src/version.h +++ b/src/version.h @@ -19,7 +19,7 @@ #ifndef VERSION_H #define VERSION_H -#define MELONDS_URL "http://melonds.kuribo64.net/" +#define MELONDS_URL "https://melonds.kuribo64.net/" #endif // VERSION_H |