Change ARROW_SIZE to a constexpr int

This commit is contained in:
sukibaby
2024-09-30 17:17:02 -07:00
committed by teejusb
parent abf89ec2b1
commit 93c15f9b15
+1 -1
View File
@@ -33,7 +33,7 @@ namespace ScreenDimensions
* This is referenced in ArrowEffects, GameManager, NoteField, and SnapDisplay.
* XXX: doesn't always have to be 64. -aj
*/
#define ARROW_SIZE (64)
constexpr int ARROW_SIZE = 64;
#endif