mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
This commit is contained in:
parent
4cef38456a
commit
3e59b3f72e
2 changed files with 3 additions and 2 deletions
|
@ -19,6 +19,7 @@
|
|||
- Fix: [#22304] Graphs don't draw lines on the left edge of the screen.
|
||||
- Fix: [#22318] Water sparkles are missing if transparent water is enabled without RCT1 linked.
|
||||
- Fix: [#22333] Tile inspector closes other tool windows.
|
||||
- Fix: [#22339] Printing ui.tool.cursor in console crashes the game.
|
||||
- Fix: [#22348] Progress bar screen doesn't handle window resizing.
|
||||
|
||||
0.4.12 (2024-07-07)
|
||||
|
|
|
@ -86,9 +86,9 @@ namespace OpenRCT2::Scripting
|
|||
{
|
||||
auto str = CursorNames[value];
|
||||
duk_push_lstring(ctx, str.data(), str.size());
|
||||
DukValue::take_from_stack(ctx);
|
||||
return DukValue::take_from_stack(ctx);
|
||||
}
|
||||
return {};
|
||||
return ToDuk(ctx, undefined);
|
||||
}
|
||||
|
||||
template<> CursorID FromDuk(const DukValue& s)
|
||||
|
|
Loading…
Reference in a new issue