JKRAram and JKRAramStream (#80)

* before __register_global_object

* JKRThread::sThreadList, JKRHeap::sSystemHeap, etc.

* cleanup and started on JKRDvdArchive

* before changing JKRCompression

* more JKRDvdArchive, abs, and memset

* fixed JKRArchive::setExpandSize split

* JKRArchive::sCurrentDirID, JKRDvdFile::sDvdList, and matching JKRDvdFile constructors

* problems

* merge fixes and formatting

* updated clang version in clang-format-all to version 10

* Added OSPhysicalToCached and struct for global memory

* remove useless __attribute__

* changed from defines and macros to const variable and function

* changed FLAG_HAS to FLAG_ON

* JKRAram, linking problems

* fix JKRAram

* remove nonmatching stuff

* renamed static data

* more static class members

* JKRAramStream OK

* formatting

Co-authored-by: Julgodis <>
Co-authored-by: Pheenoh <pheenoh@gmail.com>
This commit is contained in:
Jonathan Wase
2021-01-09 20:15:52 -05:00
committed by GitHub
co-authored by Julgodis <> Pheenoh
parent 8bd3d07e23
commit 82d5e0f796
255 changed files with 2048 additions and 3354 deletions
+9 -3
View File
@@ -1,8 +1,14 @@
#!/bin/bash
if [[ -z "${CLANG_FORMAT_EXE}" ]]; then
CF="clang-format-10"
else
CF="${CLANG_FORMAT_EXE}"
fi
echo "formatting src/*"
find ./src -iname *.h -o -iname *.cpp | xargs clang-format -i
find ./src -iname *.h -o -iname *.cpp | xargs $CF -i
echo "formatting libs/*"
find ./libs -iname *.h -o -iname *.cpp | xargs clang-format -i
find ./libs -iname *.h -o -iname *.cpp | xargs $CF -i
echo "formatting include/*"
find ./include -iname *.h -o -iname *.cpp | xargs clang-format -i
find ./include -iname *.h -o -iname *.cpp | xargs $CF -i
echo "done"