This gets the project to compile on OSX with Clang 16 (OSX version 14.7.x) but there's missing libraries for the linking stage.

This commit is contained in:
Zed A. Shaw 2025-02-17 05:26:47 -05:00
parent 2a4ada81bb
commit deb235dbc5
2 changed files with 3 additions and 3 deletions

View file

@ -35,7 +35,7 @@ inline uint32_t new_lighting(uint32_t pixel, int level) {
Raycaster::Raycaster(TexturePack &textures, int width, int height) :
$textures(textures),
$view_texture({(unsigned int)width, (unsigned int)height}),
$view_texture(sf::Vector2u{(unsigned int)width, (unsigned int)height}),
$view_sprite($view_texture),
$width(width), $height(height),
$zbuffer(width),