Skip to content

Commit

Permalink
Minor refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
0x7c13 committed Jul 6, 2023
1 parent 3e8f350 commit b1add2a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Assets/Scripts/Core/GameBox/GameBoxInterpreter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,5 @@ public static float TickToGameBoxSeconds(uint tick)
{
return (float)tick / GameBoxTicksPerSecond;
}

}
}
2 changes: 1 addition & 1 deletion Assets/Scripts/Pal3/UI/CursorManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public sealed class CursorManager : MonoBehaviour,

public void Init(GameResourceProvider gameResourceProvider)
{
gameResourceProvider = Requires.IsNotNull(gameResourceProvider, nameof(gameResourceProvider));
Requires.IsNotNull(gameResourceProvider, nameof(gameResourceProvider));
_cursorTextureNormal = gameResourceProvider.GetCursorTexture();
Cursor.SetCursor(_cursorTextureNormal, Vector2.zero, CursorMode.Auto);
}
Expand Down

0 comments on commit b1add2a

Please sign in to comment.