From f60147e5d23969d7bbc7bb487e3fb3b06adb97b8 Mon Sep 17 00:00:00 2001 From: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> Date: Thu, 4 Nov 2021 06:56:31 -0400 Subject: [PATCH] Re-centers the title screen (#9227) --- code/game/turfs/closed/_closed.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/turfs/closed/_closed.dm b/code/game/turfs/closed/_closed.dm index 333cf42b5f3..2a0425f2dea 100644 --- a/code/game/turfs/closed/_closed.dm +++ b/code/game/turfs/closed/_closed.dm @@ -76,7 +76,7 @@ desc = null icon = 'icons/blank_title.png' icon_state = "" - pixel_x = -64 + pixel_x = 0 // SKYRAT EDIT - Re-centering the title screen - ORIGINAL: pixel_x = -64 plane = SPLASHSCREEN_PLANE bullet_bounce_sound = null @@ -96,7 +96,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/indestructible/splashscreen) if(width == 480) // 480x480 is nonwidescreen pixel_x = 0 else if(width == 608) // 608x480 is widescreen - pixel_x = -64 + pixel_x = 0 // SKYRAT EDIT - Re-centering the title screen - ORIGINAL: pixel_x = -64 /turf/closed/indestructible/splashscreen/vv_edit_var(var_name, var_value) . = ..()