Bugfix: 2x+ skyboxes given insufficient memory space (#372)

This commit is contained in:
Gregory Heskett
2022-03-30 17:41:22 -05:00
committed by GitHub
parent f98d43c9de
commit ac0299e5b5

View File

@@ -61,7 +61,7 @@ struct Skybox {
struct Skybox sSkyBoxInfo[2];
typedef const Texture *const SkyboxTexture[80 * SKYBOX_SIZE];
typedef const Texture *const SkyboxTexture[80 * sqr(SKYBOX_SIZE)];
extern SkyboxTexture bbh_skybox_ptrlist;
extern SkyboxTexture bidw_skybox_ptrlist;