Message box with save ID info on new save

This commit is contained in:
Simon 2011-03-24 21:34:42 +00:00
parent 35947b644a
commit bc58ff1479

View File

@ -3200,8 +3200,14 @@ int main(int argc, char *argv[])
{
if (!svf_open || !svf_own || x>51)
{
if (save_name_ui(vid_buf))
if (save_name_ui(vid_buf)){
execute_save(vid_buf);
if(svf_id[0]){
char tmpstring[256] = "";
sprintf(tmpstring, "Save uploaded with the ID %s", svf_id);
info_ui(vid_buf, "Uploaded new save", tmpstring);
}
}
}
else
execute_save(vid_buf);