赞 | 26 |
VIP | 26 |
好人卡 | 15 |
积分 | 55 |
经验 | 79416 |
最后登录 | 2024-9-2 |
在线时间 | 2562 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 5463
- 在线时间
- 2562 小时
- 注册时间
- 2011-9-27
- 帖子
- 1120
|
本帖最后由 怕鼠的猫 于 2012-2-3 08:29 编辑
- class Scene_Save
- def ensure_cursor_visible
- @index=1 if @index==0 #强制不能选择1号
- self.top_index = index if index < top_index
- self.bottom_index = index if index > bottom_index
- end
- #--------------------------------------------------------------------------
- # ● 初始化选择状态
- #--------------------------------------------------------------------------
- def init_selection
- @index = first_savefile_index
- @index=1 if @index==0 #强制不能选择1号
- @savefile_windows[@index].selected = true
- self.top_index = @index - visible_max / 2
- ensure_cursor_visible
- end
- end
复制代码 改过之后的样子。 |
|