Skip to content

Commit

Permalink
Removes unused argument internally
Browse files Browse the repository at this point in the history
JujuAdams committed Aug 13, 2024

Verified

This commit was signed with the committer’s verified signature.
1 parent 630acd2 commit 0f7de45
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/__scribble_class_page/__scribble_class_page.gml
Original file line number Diff line number Diff line change
@@ -155,7 +155,7 @@ function __scribble_class_page() constructor
}
}

static __get_vertex_buffer = function(_texture, _fontName, _model_struct)
static __get_vertex_buffer = function(_texture, _fontName)
{
if (_fontName == undefined)
{
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@
#macro __SCRIBBLE_VBUFF_WRITE_GLYPH if (_glyph_texture != _last_glyph_texture)\
{\
_last_glyph_texture = _glyph_texture;\
_vbuff = _page_data.__get_vertex_buffer(_glyph_texture, _glyph_grid[# _i, __SCRIBBLE_GEN_GLYPH.__FONT_NAME], self);\
_vbuff = _page_data.__get_vertex_buffer(_glyph_texture, _glyph_grid[# _i, __SCRIBBLE_GEN_GLYPH.__FONT_NAME]);\
}\
if (_bezier_do)\
{\

0 comments on commit 0f7de45

Please sign in to comment.