From e4ff110d8524a15a25168916be68397faff12575 Mon Sep 17 00:00:00 2001 From: Erik Cowley Date: Fri, 13 Oct 2023 01:16:31 -0400 Subject: [PATCH] Add ghosts --- ghostland.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghostland.cpp b/ghostland.cpp index edd51c8..e8bc8ed 100644 --- a/ghostland.cpp +++ b/ghostland.cpp @@ -327,7 +327,7 @@ int main(int argc, char *argv[]) float smallcutoff = glm::cos(glm::radians(7.5f)); std::vector ghosts; - for (int i = 0; i < 4000; i++) { + for (int i = 0; i < 1000; i++) { ghosts.push_back(new Ghost(xmin_wall, xmax_wall, zmin_wall, zmax_wall)); }