Skip to content

Commit

Permalink
Cleanup unused imports, add missing private designator
Browse files Browse the repository at this point in the history
  • Loading branch information
themikelester committed Dec 12, 2024
1 parent fcd760f commit 7924a31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Common/JSYSTEM/J2D.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ enum J2DUVBinding {

// TODO: Move and reorganize
export class J2DGrafContext {
sceneParams = new SceneParams();
private sceneParams = new SceneParams();

constructor(device: GfxDevice) {
// @NOTE: The y axis is inverted by this ortho matrix. Gamecube origin is top-left, ours is bottom left.
Expand Down
6 changes: 2 additions & 4 deletions src/ZeldaWindWaker/d_place_name.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import { mat4, vec3 } from "gl-matrix";
import { J2DGrafContext, J2DPane, J2DPicture, J2DScreen, SCRN } from "../Common/JSYSTEM/J2D.js";
import { J2DGrafContext, J2DPicture, J2DScreen } from "../Common/JSYSTEM/J2D.js";
import { BTI, BTIData } from "../Common/JSYSTEM/JUTTexture.js";
import { GfxRenderInstManager } from "../gfx/render/GfxRenderInstManager.js";
import { ViewerRenderInput } from "../viewer.js";
import { EDemoMode } from "./d_demo.js";
import { dProcName_e } from "./d_procname.js";
import { dComIfG_resLoad, ResType } from "./d_resorce.js";
import { cPhs__Status, fGlobals, fopMsgM_Delete, fpc_bs__Constructor, fpcPf__Register, fpcSCtRq_Request, leafdraw_class, msg_class } from "./framework.js";
import { cPhs__Status, fGlobals, fopMsgM_Delete, fpc_bs__Constructor, fpcPf__Register, fpcSCtRq_Request, msg_class } from "./framework.js";
import { dGlobals } from "./Main.js";
import { MtxTrans } from "./m_do_mtx.js";

let currentPlaceName: number | null = null;

Expand Down

0 comments on commit 7924a31

Please sign in to comment.