mirror of
https://github.com/zeldaret/tww.git
synced 2026-09-07 19:10:43 -04:00
Minor fixes
This commit is contained in:
@@ -598,7 +598,8 @@ struct J3DBlend : public J3DBlendInfo {
|
||||
extern const J3DFogInfo j3dDefaultFogInfo;
|
||||
|
||||
struct J3DFog : public J3DFogInfo {
|
||||
J3DFog() { *getFogInfo() = j3dDefaultFogInfo; }
|
||||
// J3DFog() { *getFogInfo() = j3dDefaultFogInfo; } // Produces the wrong codegen for mDoExt_backupMatBlock_c's constructor
|
||||
J3DFog() { J3DFogInfo::operator=(j3dDefaultFogInfo); }
|
||||
J3DFogInfo* getFogInfo() { return (J3DFogInfo*)this; }
|
||||
|
||||
void load() {
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#include "m_Do/m_Do_hostIO.h"
|
||||
#include "d/d_npc.h"
|
||||
#include "d/d_bg_s_lin_chk.h"
|
||||
#include "d/d_drawlist.h"
|
||||
|
||||
class daNpc_Md_HIO2_c {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user