using the console input since the window is lagged on mac

This commit is contained in:
Adolfo Reyna
2026-01-12 22:36:57 -05:00
parent 257c858f98
commit 713d2c0cfd
3 changed files with 170 additions and 61 deletions

View File

@@ -7,7 +7,7 @@ CXXFLAGS = -std=c++11 -Wall
# Paths for Homebrew on macOS (Silicon/M1/M2/M3)
ifeq ($(OS), Darwin)
SFML_DIR = $(shell brew --prefix sfml)
SFML_DIR = $(shell brew --prefix sfml@2)
INCLUDES = -I$(SFML_DIR)/include
LIBS = -L$(SFML_DIR)/lib -lsfml-graphics -lsfml-window -lsfml-system
else