Skip to content

Commit

Permalink
mCaptureProc: Used more expressive variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
nalane committed Dec 7, 2024
1 parent 7030309 commit 4a3dc58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/m_Do/m_Do_graphic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1088,11 +1088,11 @@ void mDoGph_screenCaptureDraw() {
}

/* 8000AAC4-8000AB1C .text mCaptureProc__FPv */
void* mCaptureProc(void* thd) {
thd = (void*)encode_s3tc(mCaptureCaptureBuffer, mCaptureTextureBuffer, mCaptureSizeWidth, mCaptureSizeHeight, (GXTexFmt)mCaptureCaptureFormat);
void* mCaptureProc(void* dummy) {
void* bytesCopied = (void*)encode_s3tc(mCaptureCaptureBuffer, mCaptureTextureBuffer, mCaptureSizeWidth, mCaptureSizeHeight, (GXTexFmt)mCaptureCaptureFormat);
DCStoreRange(mCaptureTextureBuffer, mCaptureTextureSize);
OSExitThread(thd);
return thd;
OSExitThread(bytesCopied);
return bytesCopied;
}

/* 8000AB1C-8000ABC4 .text mCaptureGXDrawSyncCallback__FUs */
Expand Down

0 comments on commit 4a3dc58

Please sign in to comment.