Skip to content

Commit

Permalink
BASS, VerbCoin: fix set_DefaultCursorMode() return value
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Oct 23, 2024
1 parent f0dc41d commit 77f3fa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BASS/TwoClickHandler.asc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CursorMode defaultCursorMode;
// label to use for text actions
Label* action;

CursorMode set_DefaultCursorMode(static TwoClickHandler, CursorMode mode)
void set_DefaultCursorMode(static TwoClickHandler, CursorMode mode)
{
defaultCursorMode = mode;
mouse.Mode = mode;
Expand Down
2 changes: 1 addition & 1 deletion Verb Coin/VerbCoin.asc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function set_buttons_enabled(bool state)
}
}

CursorMode set_DefaultCursorMode(static VerbCoin, CursorMode mode)
void set_DefaultCursorMode(static VerbCoin, CursorMode mode)
{
default_cursor_mode = mode;
mouse.Mode = mode;
Expand Down

0 comments on commit 77f3fa0

Please sign in to comment.