Description:
Fix crash.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -231,4 +231,8 | |||||
|
231 | Aborted (core dumped) |
|
231 | Aborted (core dumped) |
|
232 | - Segfault on quit (when it tries to dispose of the sound) or on playing sound on Linux |
|
232 | - Segfault on quit (when it tries to dispose of the sound) or on playing sound on Linux |
|
233 | May be due to a quirk of my Linux setup |
|
233 | May be due to a quirk of my Linux setup |
|
|
234 | - Drawing error when clicking sometimes on main screen. @done(2022-04-27) | ||
|
|
235 | Tries to draw area? | ||
|
|
236 | - Crash when extending preserve past bottom. | ||
|
|
237 | |||
|
234 |
|
238 |
@@ -265,7 +265,7 | |||||
|
265 | #endregion |
|
265 | #endregion |
|
266 | #region mouse_click |
|
266 | #region mouse_click |
|
267 |
|
267 | ||
|
268 | if (!io.WantCaptureMouse) { |
|
268 | if (isPlaying && !io.WantCaptureMouse) { |
|
269 | if (mouseCur.RightButton == ButtonState.Pressed && mousePrev.RightButton == ButtonState.Released) |
|
269 | if (mouseCur.RightButton == ButtonState.Pressed && mousePrev.RightButton == ButtonState.Released) |
|
270 | { |
|
270 | { |
|
271 | SendMessage(new JumpCameraMessage {Movement = original_point}); |
|
271 | SendMessage(new JumpCameraMessage {Movement = original_point}); |
@@ -723,7 +723,7 | |||||
|
723 | drawTileAt(10, 4, 142, 3); |
|
723 | drawTileAt(10, 4, 142, 3); |
|
724 |
|
724 | ||
|
725 | for (int i = 10; i < 199; i++) { |
|
725 | for (int i = 10; i < 199; i++) { |
|
726 | drawTileAt(10, i, 281, 1); |
|
726 | drawTileAt(10, i, 281, 1); |
|
727 | } |
|
727 | } |
|
728 | drawTileAt(10, 199, 284, 1); |
|
728 | drawTileAt(10, 199, 284, 1); |
|
729 | drawTileAt(11, 199, 280, 1); |
|
729 | drawTileAt(11, 199, 280, 1); |
You need to be logged in to leave comments.
Login now