mirror of
https://github.com/SwareJonge/mkdd.git
synced 2024-11-23 13:29:54 +00:00
fix not OK
This commit is contained in:
parent
9b7d3f8db2
commit
aae7a5f030
@ -1,7 +1,7 @@
|
||||
#ifndef _DOLPHIN_OS_H
|
||||
#define _DOLPHIN_OS_H
|
||||
|
||||
#include <dolphin/types.h>
|
||||
#include "types.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
|
@ -31,7 +31,7 @@ bool JUTPalette::load()
|
||||
{
|
||||
bool check = mNumColors != 0;
|
||||
if (check) {
|
||||
GXLoadTlut(&mTlutObj, mTlutName);
|
||||
GXLoadTlut(&mTlutObj, (GXTlut)mTlutName);
|
||||
}
|
||||
|
||||
return check;
|
||||
|
@ -194,7 +194,7 @@ void JUTVideo::postRetraceProc(u32 p1)
|
||||
|
||||
void JUTVideo::setRenderMode(const GXRenderModeObj *newRenderModeObj)
|
||||
{
|
||||
if (mRenderModeObj && newRenderModeObj->tvMode != mRenderModeObj->tvMode)
|
||||
if (mRenderModeObj && newRenderModeObj->viTVmode != mRenderModeObj->viTVmode)
|
||||
{
|
||||
mIsSetBlack = true;
|
||||
mSetBlackFrameCount = 4;
|
||||
|
Loading…
Reference in New Issue
Block a user