diff --git a/addons/saturn/assets/graphics/saturn/white.png b/addons/saturn/assets/graphics/saturn/white.png new file mode 100644 index 00000000..e3789aa3 Binary files /dev/null and b/addons/saturn/assets/graphics/saturn/white.png differ diff --git a/src/moon/saturn/saturn_textures.cpp b/src/moon/saturn/saturn_textures.cpp index ca7740df..686c5804 100644 --- a/src/moon/saturn/saturn_textures.cpp +++ b/src/moon/saturn/saturn_textures.cpp @@ -73,11 +73,7 @@ void saturn_emblem_swap() { if (custom_emblem_name != "default") { (*hookTexture) = const_cast(custom_emblem_name.c_str()); } else { -#ifdef __MINGW32__ (*hookTexture) = const_cast("actors/mario/mario_logo.rgba16"); -#else - (*hookTexture) = const_cast(texName.c_str()); -#endif } } }}); @@ -108,7 +104,7 @@ void saturn_stache_swap() { if (custom_stache_name != "default") { (*hookTexture) = const_cast(custom_stache_name.c_str()); } else { - (*hookTexture) = const_cast(texName.c_str()); + (*hookTexture) = const_cast("actors/mario/mario_mustache.rgba16"); } } }}); @@ -139,7 +135,7 @@ void saturn_button_swap() { if (custom_button_name != "default") { (*hookTexture) = const_cast(custom_button_name.c_str()); } else { - (*hookTexture) = const_cast(texName.c_str()); + (*hookTexture) = const_cast("actors/mario/mario_overalls_button.rgba16"); } } }}); @@ -170,7 +166,7 @@ void saturn_sideburn_swap() { if (custom_sideburn_name != "default") { (*hookTexture) = const_cast(custom_sideburn_name.c_str()); } else { - (*hookTexture) = const_cast(texName.c_str()); + (*hookTexture) = const_cast("actors/mario/mario_sideburn.rgba16"); } } }}); @@ -201,7 +197,7 @@ void saturn_chroma_sky_swap() { if (has_changed_chroma_sky) { (*hookTexture) = const_cast("saturn/white"); } else { - (*hookTexture) = const_cast(texName.c_str()); + (*hookTexture) = const_cast("textures/skyboxes/clouds.rgba16"); } } }});