summaryrefslogtreecommitdiff
path: root/libs/JSystem/JKernel/JKRFile.cpp
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2024-10-10 07:29:58 -0700
committerGitHub <noreply@github.com>2024-10-10 08:29:58 -0600
commit12eb254d769d84743b5cc6cd5424057c57eaf0ad (patch)
tree4509be332b2ccfc6fe939f47740d68f7746eca3e /libs/JSystem/JKernel/JKRFile.cpp
parent2fd702c0ac170a789af879b8b92a82d4dcc9080c (diff)
switch to dtk setup (#2203)
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
Diffstat (limited to 'libs/JSystem/JKernel/JKRFile.cpp')
-rw-r--r--libs/JSystem/JKernel/JKRFile.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/libs/JSystem/JKernel/JKRFile.cpp b/libs/JSystem/JKernel/JKRFile.cpp
deleted file mode 100644
index b0d8cc0dee..0000000000
--- a/libs/JSystem/JKernel/JKRFile.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "JSystem/JKernel/JKRFile.h"
-#include "dolphin/vi.h"
-
-/* 802D9518-802D9584 2D3E58 006C+00 0/0 2/2 0/0 .text read__7JKRFileFPvll */
-s32 JKRFile::read(void* data, s32 size, s32 offset) {
- while (true) {
- s32 result = readData(data, size, offset);
- if (size != result)
- VIWaitForRetrace();
- else
- return result;
- }
-}