diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-06 10:52:47 +0100 | 
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-06 10:52:47 +0100 | 
| commit | cc2ffe577ad93b126bf9cac6391e678eb54a07f5 (patch) | |
| tree | 7494296bbd9d00768f3b4ea06eeb3b52597408a5 | |
| parent | 92dfde9a56f5a607269e8908002a72bec85357bd (diff) | |
make format
| -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  |