summaryrefslogtreecommitdiff
path: root/src/nw4r/db/db_mapFile.cpp
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2025-09-16 22:26:16 -0400
committerelijah-thomas774 <elijahthomas774@gmail.com>2025-09-16 22:32:07 -0400
commite3b5103cbe6bca291e05d0f0e84340b81f088c37 (patch)
tree06c25c4fb0fbf2e9a10c2bb59082caf4226074fa /src/nw4r/db/db_mapFile.cpp
parent0a2b38da2b07cc983fbc13cdbadf6d6345ad5d89 (diff)
remove address comments
Diffstat (limited to 'src/nw4r/db/db_mapFile.cpp')
-rw-r--r--src/nw4r/db/db_mapFile.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/nw4r/db/db_mapFile.cpp b/src/nw4r/db/db_mapFile.cpp
index 2e3c2f41..f21b4e7f 100644
--- a/src/nw4r/db/db_mapFile.cpp
+++ b/src/nw4r/db/db_mapFile.cpp
@@ -1,9 +1,9 @@
#include "nw4r/db/db_mapFile.h"
-#include "rvl/DVD.h" // IWYU pragma: export
-#include "rvl/OS.h" // IWYU pragma: export
#include "stdio.h"
+#include "rvl/DVD.h" // IWYU pragma: export
+#include "rvl/OS.h" // IWYU pragma: export
namespace nw4r {
namespace db {
@@ -34,7 +34,6 @@ static void MapFile_Append_(MapFile *file) {
}
}
-/** 80436a50 */
MapFileHandle MapFile_RegistOnDvd(void *buf, const char *path, const OSModuleInfo *info) {
MapFile *file = (MapFile *)buf;
file->mapBuf = nullptr;
@@ -46,7 +45,6 @@ MapFileHandle MapFile_RegistOnDvd(void *buf, const char *path, const OSModuleInf
return file;
}
-/** 80436ae0 */
void MapFile_Unregist(MapFileHandle file) {
if (file == sMapFileList) {
sMapFileList = sMapFileList->next;
@@ -62,17 +60,14 @@ void MapFile_Unregist(MapFileHandle file) {
}
}
-/** 80436b30 */
void MapFile_UnregistAll() {
sMapFileList = nullptr;
}
-/** 80436b40 */
static u8 GetCharOnMem_(const u8 *arg) {
return *arg;
}
-/** 80436b50 */
static u8 GetCharOnDvd_(const u8 *buf) {
s32 address = (u32)buf & 0x7fffffff;
s32 offset = address - sMapBufOffset;
@@ -264,7 +259,6 @@ bool QuerySymbolToMapFile_(u8 *buf, const OSModuleInfo *moduleInfo, u32 address,
}
// No idea, doesn't appear in the DWARF
-/** 804370d0 */
bool UnkFunction_(const OSModuleInfo *moduleInfo, u32 address, u8 *strBuf, u32 strBufSize) {
if (moduleInfo == nullptr) {
if (address < (u32)_stack_end) {