mirror of
https://github.com/love2d/love.git
synced 2026-08-12 00:20:52 +02:00
Merge pull request #1927 from EngineerSmith/bug-hunting
Fixed issue #1925
This commit is contained in:
@@ -140,6 +140,7 @@ Released: N/A
|
||||
|
||||
* Fixed BezierCurve:render adding collinear points in some situations.
|
||||
* Fixed sound Decoders to cause a Lua error instead of hard-crashing when memory for the decoding buffer can't be allocated.
|
||||
* Fixed enum misspelling for thousandsseparator from thsousandsseparator for both keyboard and scancode enums.
|
||||
|
||||
LOVE 11.5 [Mysterious Mysteries]
|
||||
--------------------------------
|
||||
|
||||
@@ -221,7 +221,7 @@ StringMap<Keyboard::Key, Keyboard::KEY_MAX_ENUM>::Entry Keyboard::keyEntries[] =
|
||||
{"oper", Keyboard::KEY_OPER},
|
||||
{"clearagain", Keyboard::KEY_CLEARAGAIN},
|
||||
|
||||
{"thsousandsseparator", Keyboard::KEY_THOUSANDSSEPARATOR},
|
||||
{"thousandsseparator", Keyboard::KEY_THOUSANDSSEPARATOR},
|
||||
{"decimalseparator", Keyboard::KEY_DECIMALSEPARATOR},
|
||||
{"currencyunit", Keyboard::KEY_CURRENCYUNIT},
|
||||
{"currencysubunit", Keyboard::KEY_CURRENCYSUBUNIT},
|
||||
@@ -442,7 +442,7 @@ StringMap<Keyboard::Scancode, Keyboard::SCANCODE_MAX_ENUM>::Entry Keyboard::scan
|
||||
|
||||
{"kp00", SCANCODE_KP_00},
|
||||
{"kp000", SCANCODE_KP_000},
|
||||
{"thsousandsseparator", SCANCODE_THOUSANDSSEPARATOR},
|
||||
{"thousandsseparator", SCANCODE_THOUSANDSSEPARATOR},
|
||||
{"decimalseparator", SCANCODE_DECIMALSEPARATOR},
|
||||
{"currencyunit", SCANCODE_CURRENCYUNIT},
|
||||
{"currencysubunit", SCANCODE_CURRENCYSUBUNIT},
|
||||
|
||||
Reference in New Issue
Block a user