diff options
| author | JAROWMR <jarorutjes07@gmail.com> | 2025-01-06 11:31:54 +0100 | 
|---|---|---|
| committer | JAROWMR <jarorutjes07@gmail.com> | 2025-01-06 11:31:54 +0100 | 
| commit | f8f420bc6866297d0deaafb6d1acc23eaab1b17e (patch) | |
| tree | eeb5d21e08f828c05bfb9c37f128dd83bc9bcb65 | |
| parent | a9fba4fa1fc348cdbbd60e9bda58b62b35019380 (diff) | |
| parent | 79df1f88c41e5e6872b5502dfba776048dbc593e (diff) | |
Merge branch 'master' of github.com:lonkaars/crepe into jaro/main-menu
| -rw-r--r-- | src/crepe/system/InputSystem.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/crepe/system/InputSystem.cpp b/src/crepe/system/InputSystem.cpp index d9c97a3..be7eda6 100644 --- a/src/crepe/system/InputSystem.cpp +++ b/src/crepe/system/InputSystem.cpp @@ -217,7 +217,7 @@ bool InputSystem::is_mouse_inside_button(  		actual_pos += cam_transform.position;  	}  	vec2 half_dimensions = button.dimensions * transform.scale / 2; -	 +  	return mouse_pos.x >= actual_pos.x - half_dimensions.x  		   && mouse_pos.x <= actual_pos.x + half_dimensions.x  		   && mouse_pos.y >= actual_pos.y - half_dimensions.y |