Skip to content

Commit 2b6c079

Browse files
Correct bug where prc/pdb and PRC/PDB were both required to be valid when only one should have been (OR to AND).
1 parent 841cff2 commit 2b6c079

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,5 @@ cmake-build-release-visual-studio-1/
3737
userdata-palmos41-en-m515.ram
3838
userdata-en-m515.ram
3939
palmos41-en-m515.rom
40-
default-palmos41-en-m515.ram
40+
default-palmos41-en-m515.ram
41+
/build/

.idea/misc.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required (VERSION 3.13)
22
project(Mu
3-
VERSION 1.3.2
3+
VERSION 1.3.3
44
DESCRIPTION "Classic Palm OS Emulator."
55
HOMEPAGE_URL https://github.com/libretro/Mu
66
LANGUAGES C CXX)

libretroBuildSystem/libretro.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ void retro_get_system_info(struct retro_system_info *info){
213213
#ifndef GIT_VERSION
214214
#define GIT_VERSION ""
215215
#endif
216-
info->library_version = "v1.3.2" GIT_VERSION;
216+
info->library_version = "v1.3.3" GIT_VERSION;
217217
info->need_fullpath = true;
218218
info->valid_extensions = "prc|pqa|img|pdb|zip";
219219

@@ -491,7 +491,7 @@ bool loadContentFileNonSRAM(uint32_t *error, uint8_t *contentData,
491491

492492
// Not a PDB or PRC?
493493
if ((0 != strcasecmp((lookStage == 0 ? ".pdb" : ".prc"),
494-
&stat.m_filename[fileNameLen - 4])) ||
494+
&stat.m_filename[fileNameLen - 4])) &&
495495
(0 != strcasecmp((lookStage == 0 ? ".PDB" : ".PRC"),
496496
&stat.m_filename[fileNameLen - 4])))
497497
continue;

libretroBuildSystem/mu_libretro.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ supported_extensions = "prc|pqa|img|pdb|zip"
55
corename = "Mu"
66
license = "CC BY-NC 3.0 US (Non-commercial)"
77
permissions = ""
8-
display_version = "v1.3.2"
8+
display_version = "v1.3.3"
99
categories = "Emulator"
1010

1111
# Hardware Information

0 commit comments

Comments
 (0)