summaryrefslogtreecommitdiff
path: root/src/JSystem/JKernel/JKRFileCache.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-02-23 19:59:54 -0500
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2025-02-23 19:59:54 -0500
commitc4ad9f7241e2f4bf09a88deb62d683796c4d4200 (patch)
treeed547fe2bc212092cda87cd3d4ca09b86731de43 /src/JSystem/JKernel/JKRFileCache.cpp
parent730b74e2e3097297258deee1eb2a68c7f82d1ce2 (diff)
Various cleanup
Diffstat (limited to 'src/JSystem/JKernel/JKRFileCache.cpp')
-rw-r--r--src/JSystem/JKernel/JKRFileCache.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/JSystem/JKernel/JKRFileCache.cpp b/src/JSystem/JKernel/JKRFileCache.cpp
index a784403b..4eebe2a9 100644
--- a/src/JSystem/JKernel/JKRFileCache.cpp
+++ b/src/JSystem/JKernel/JKRFileCache.cpp
@@ -389,7 +389,8 @@ char* JKRFileCache::getDvdPathName(const char* path) const {
/* 802B7E60-802B7EA8 .text convStrLower__12JKRFileCacheCFPc */
void JKRFileCache::convStrLower(char* buffer) const {
while (*buffer) {
- *buffer++ = tolower(*buffer);
+ *buffer = tolower(*buffer);
+ buffer++;
}
}