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 | 231 | Aborted (core dumped) |
|
232 | 232 | - Segfault on quit (when it tries to dispose of the sound) or on playing sound on Linux |
|
233 | 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 | 265 | #endregion |
|
266 | 266 | #region mouse_click |
|
267 | 267 | |
|
268 | if (!io.WantCaptureMouse) { | |
|
268 | if (isPlaying && !io.WantCaptureMouse) { | |
|
269 | 269 | if (mouseCur.RightButton == ButtonState.Pressed && mousePrev.RightButton == ButtonState.Released) |
|
270 | 270 | { |
|
271 | 271 | SendMessage(new JumpCameraMessage {Movement = original_point}); |
You need to be logged in to leave comments.
Login now