4.9.0 quicksave rotation broken

Forum rules
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.

Post a reply

Smilies
:D :) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :geek: :ugeek: :!: :?: :idea: :arrow: :| :mrgreen: :3: :wub: >:( :blergh:
View more smilies

BBCode is OFF
Smilies are ON

Topic review
   

Expand view Topic review: 4.9.0 quicksave rotation broken

Re: 4.9.0 quicksave rotation broken

by Graf Zahl » Sun Dec 04, 2022 2:02 pm

I'm probably going to redo the feature like I did in Raze, i.e. use a different command for it instead of a CVAR switch

Re: 4.9.0 quicksave rotation broken

by axredneck » Fri Dec 02, 2022 1:24 pm

Re: 4.9.0 quicksave rotation broken

by wildweasel » Fri Dec 02, 2022 8:52 am

This seems like a Bugs thread and not simply a Technical Issue, so I've moved it to its proper place so more investigation can be done.

4.9.0 quicksave rotation broken

by Guest1 » Fri Dec 02, 2022 8:32 am

When quicksave rotation is enabled, the slots should rotate through quick00, 01, etc. After the savegame overhaul in 4.9.0, quicksaves instead get stuck on quick-1, and after advancing to the next map they get stuck on 01, etc. Changing g_game.cpp line 2253 from

file = G_BuildSaveName(FStringf("quick%02d", nextautosave));

to:

file = G_BuildSaveName(FStringf("quick%02d", lastquicksave));

fixes it.

Top