From a46e6e02042fdec4e79b21fed8028cdd52965515 Mon Sep 17 00:00:00 2001 From: elijah-thomas774 Date: Sun, 12 May 2024 14:30:58 -0400 Subject: [PATCH] added ported from comments --- src/nw4r/ut/ut_CharStrmReader.cpp | 2 ++ src/nw4r/ut/ut_CharWriter.cpp | 1 + src/nw4r/ut/ut_DvdFileStream.cpp | 2 ++ src/nw4r/ut/ut_DvdLockedFileStream.cpp | 2 ++ src/nw4r/ut/ut_FileStream.cpp | 2 ++ src/nw4r/ut/ut_Font.cpp | 2 ++ src/nw4r/ut/ut_IOStream.cpp | 2 ++ src/nw4r/ut/ut_LockedCache.cpp | 2 ++ src/nw4r/ut/ut_NandFileStream.cpp | 2 ++ src/nw4r/ut/ut_ResFont.cpp | 2 ++ src/nw4r/ut/ut_ResFontBase.cpp | 2 ++ src/nw4r/ut/ut_RomFont.cpp | 2 ++ src/nw4r/ut/ut_TagProcessorBase.cpp | 2 ++ src/nw4r/ut/ut_TextWriterBase.cpp | 2 ++ src/nw4r/ut/ut_list.cpp | 2 ++ 15 files changed, 29 insertions(+) diff --git a/src/nw4r/ut/ut_CharStrmReader.cpp b/src/nw4r/ut/ut_CharStrmReader.cpp index 81bb80fa..3891cc00 100644 --- a/src/nw4r/ut/ut_CharStrmReader.cpp +++ b/src/nw4r/ut/ut_CharStrmReader.cpp @@ -1,3 +1,5 @@ +// ported from https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_CharStrmReader.cpp + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_CharWriter.cpp b/src/nw4r/ut/ut_CharWriter.cpp index 1281dc01..15eef532 100644 --- a/src/nw4r/ut/ut_CharWriter.cpp +++ b/src/nw4r/ut/ut_CharWriter.cpp @@ -1,3 +1,4 @@ +// ported from https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_CharWriter.cpp #include diff --git a/src/nw4r/ut/ut_DvdFileStream.cpp b/src/nw4r/ut/ut_DvdFileStream.cpp index 317bbc40..7e35ec14 100644 --- a/src/nw4r/ut/ut_DvdFileStream.cpp +++ b/src/nw4r/ut/ut_DvdFileStream.cpp @@ -1,3 +1,5 @@ +// Ported From https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_DvdFileStream.cpp + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_DvdLockedFileStream.cpp b/src/nw4r/ut/ut_DvdLockedFileStream.cpp index eb18ac54..1bf703f7 100644 --- a/src/nw4r/ut/ut_DvdLockedFileStream.cpp +++ b/src/nw4r/ut/ut_DvdLockedFileStream.cpp @@ -1,3 +1,5 @@ +// Ported From https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_DvdLockedFileStream.cpp + #include #include diff --git a/src/nw4r/ut/ut_FileStream.cpp b/src/nw4r/ut/ut_FileStream.cpp index a7b68cd0..bec64b31 100644 --- a/src/nw4r/ut/ut_FileStream.cpp +++ b/src/nw4r/ut/ut_FileStream.cpp @@ -1,3 +1,5 @@ +// Ported from https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_FileStream.cpp + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_Font.cpp b/src/nw4r/ut/ut_Font.cpp index 0032e911..eb46562f 100644 --- a/src/nw4r/ut/ut_Font.cpp +++ b/src/nw4r/ut/ut_Font.cpp @@ -1,3 +1,5 @@ +// Ported from https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_Font.cpp + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_IOStream.cpp b/src/nw4r/ut/ut_IOStream.cpp index 01c7fed0..32d21799 100644 --- a/src/nw4r/ut/ut_IOStream.cpp +++ b/src/nw4r/ut/ut_IOStream.cpp @@ -1,3 +1,5 @@ +// Ported from https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_IOStream.cpp + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_LockedCache.cpp b/src/nw4r/ut/ut_LockedCache.cpp index 3972e471..f3f7e9d5 100644 --- a/src/nw4r/ut/ut_LockedCache.cpp +++ b/src/nw4r/ut/ut_LockedCache.cpp @@ -1,3 +1,5 @@ +// Ported From https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_LockedCache.cpp + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_NandFileStream.cpp b/src/nw4r/ut/ut_NandFileStream.cpp index 29c7a0b8..ae2f7422 100644 --- a/src/nw4r/ut/ut_NandFileStream.cpp +++ b/src/nw4r/ut/ut_NandFileStream.cpp @@ -1,4 +1,6 @@ +// Ported From https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_NandFileStream.cpp + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_ResFont.cpp b/src/nw4r/ut/ut_ResFont.cpp index 1dfc9f3b..2a9784fc 100644 --- a/src/nw4r/ut/ut_ResFont.cpp +++ b/src/nw4r/ut/ut_ResFont.cpp @@ -1,3 +1,5 @@ +// Ported From https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_ResFont.cpp + #include const u32 MAGIC_RESFONT = 'RFNT'; diff --git a/src/nw4r/ut/ut_ResFontBase.cpp b/src/nw4r/ut/ut_ResFontBase.cpp index 40068a17..87e78e2a 100644 --- a/src/nw4r/ut/ut_ResFontBase.cpp +++ b/src/nw4r/ut/ut_ResFontBase.cpp @@ -1,3 +1,5 @@ +// Ported From https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_ResFontBase.cpp + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_RomFont.cpp b/src/nw4r/ut/ut_RomFont.cpp index f3cb29f6..4c7ee649 100644 --- a/src/nw4r/ut/ut_RomFont.cpp +++ b/src/nw4r/ut/ut_RomFont.cpp @@ -1,3 +1,5 @@ +// Ported from https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_RomFont.cpp --- Mostly unused + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_TagProcessorBase.cpp b/src/nw4r/ut/ut_TagProcessorBase.cpp index dc001042..a0fa7dd5 100644 --- a/src/nw4r/ut/ut_TagProcessorBase.cpp +++ b/src/nw4r/ut/ut_TagProcessorBase.cpp @@ -1,3 +1,5 @@ +// Ported from https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_TagProcessorBase.cpp + #include namespace nw4r { diff --git a/src/nw4r/ut/ut_TextWriterBase.cpp b/src/nw4r/ut/ut_TextWriterBase.cpp index f781f906..0caa89f3 100644 --- a/src/nw4r/ut/ut_TextWriterBase.cpp +++ b/src/nw4r/ut/ut_TextWriterBase.cpp @@ -1,4 +1,6 @@ +// Ported from https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_TextWriterBase.cpp + #include #include diff --git a/src/nw4r/ut/ut_list.cpp b/src/nw4r/ut/ut_list.cpp index 5addeda8..f11fc02c 100644 --- a/src/nw4r/ut/ut_list.cpp +++ b/src/nw4r/ut/ut_list.cpp @@ -1,3 +1,5 @@ +// Ported From https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_list.cpp + #include namespace nw4r {