This file is indexed.

/usr/share/games/renpy/common/_layout/screen_load_save.rpym is in renpy 6.13.12-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
# Copyright 2004-2012 Tom Rothamel <pytom@bishoujo.us>
# See LICENSE.txt for license details.

init python:

    layout.provides('load_save')

label load_screen:

    $ renpy.show_screen('load')
    $ ui.interact()
    jump _noisy_return

label save_screen:

    $ renpy.show_screen('save')
    $ ui.interact()
    jump _noisy_return