#============================================================================== # ■ VXAce-RGSS3-25 強くてニューゲーム-opt2 [Ver.1.0.0] by Claimh #------------------------------------------------------------------------------ # ・「セーブ画面-改2」のセーブ・ロード画面で # クリアデータに☆を付けます。 #============================================================================== #============================================================================== # ■ Window_SaveInfo #============================================================================== class Window_SaveInfo < Window_Selectable CLAER = "☆" #-------------------------------------------------------------------------- # ● プレイ時間の描画 #-------------------------------------------------------------------------- alias draw_playtime_renew draw_playtime def draw_playtime(x, y, width) draw_clear draw_playtime_renew(x, y, width) end #-------------------------------------------------------------------------- # ● クリア情報描画 #-------------------------------------------------------------------------- def draw_clear header = DataManager.load_header(@file_index) return unless header return unless header[:game_clear] x = contents_width - text_size(@playtime).width - 30 draw_text(x, 0, 30, line_height, CLAER) end end