aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArisotura <thetotalworm@gmail.com>2019-09-01 20:25:06 +0200
committerGitHub <noreply@github.com>2019-09-01 20:25:06 +0200
commit27498ced4a486dd12c8b32f0f3a66cddf0605cd6 (patch)
tree917a15dd478d55fd709e5ff1e07d533c7d60c6d0
parentb3df6e523adf47bb7b1f2108fc4204cc85dd9617 (diff)
parentfefcd5165b52798b71f6b00c4b45d3ffab537b7f (diff)
Merge pull request #505 from Zettymaster/master
Add warning message if romlist.bin is not found
-rw-r--r--.gitignore2
-rw-r--r--src/libui_sdl/main.cpp8
2 files changed, 9 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index f63e239..bd1d485 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,5 @@ obj
melon_grc.c
melon_grc.h
cmake-build
+cmake-build-debug
+.idea
diff --git a/src/libui_sdl/main.cpp b/src/libui_sdl/main.cpp
index 24febf6..7fd02bb 100644
--- a/src/libui_sdl/main.cpp
+++ b/src/libui_sdl/main.cpp
@@ -2608,7 +2608,6 @@ int main(int argc, char** argv)
SDL_Quit();
return 0;
}
-
{
FILE* f = Platform::OpenLocalFile("romlist.bin", "rb");
if (f)
@@ -2625,6 +2624,13 @@ int main(int argc, char** argv)
"You should use the latest version of romlist.bin (provided in melonDS release packages).");
}
}
+ else
+ {
+ uiMsgBoxError(NULL,
+ "romlist.bin not found.",
+ "Save memory type detection will not work correctly.\n\n"
+ "You should use the latest version of romlist.bin (provided in melonDS release packages).");
+ }
}
CreateMainWindowMenu();