mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Use ClockTicks class for the timer values saved and restored when creating a savegame
git-svn-id: https://svn.eduke32.com/eduke32@8537 1a8010ca-5511-0410-912e-c29ae57300e0 # Conflicts: # source/duke3d/src/savegame.cpp
This commit is contained in:
parent
a32da009bd
commit
9e86e83da8
1 changed files with 6 additions and 7 deletions
|
@ -486,16 +486,16 @@ int32_t G_LoadPlayer(FSaveGameNode *sv)
|
||||||
////////// TIMER SAVING/RESTORING //////////
|
////////// TIMER SAVING/RESTORING //////////
|
||||||
|
|
||||||
static struct {
|
static struct {
|
||||||
int32_t totalclock, totalclocklock; // engine
|
ClockTicks totalclock, totalclocklock; // engine
|
||||||
int32_t ototalclock, lockclock; // game
|
ClockTicks ototalclock, lockclock; // game
|
||||||
} g_timers;
|
} g_timers;
|
||||||
|
|
||||||
static void G_SaveTimers(void)
|
static void G_SaveTimers(void)
|
||||||
{
|
{
|
||||||
g_timers.totalclock = (int32_t) totalclock;
|
g_timers.totalclock = totalclock;
|
||||||
g_timers.totalclocklock = (int32_t) totalclocklock;
|
g_timers.totalclocklock = totalclocklock;
|
||||||
g_timers.ototalclock = (int32_t) ototalclock;
|
g_timers.ototalclock = ototalclock;
|
||||||
g_timers.lockclock = (int32_t) lockclock;
|
g_timers.lockclock = lockclock;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void G_RestoreTimers(void)
|
static void G_RestoreTimers(void)
|
||||||
|
@ -550,7 +550,6 @@ bool G_SavePlayer(FSaveGameNode *sv)
|
||||||
Net_WaitForServer();
|
Net_WaitForServer();
|
||||||
|
|
||||||
G_RestoreTimers();
|
G_RestoreTimers();
|
||||||
ototalclock = totalclock;
|
|
||||||
|
|
||||||
VM_OnEvent(EVENT_POSTSAVEGAME, g_player[myconnectindex].ps->i, myconnectindex);
|
VM_OnEvent(EVENT_POSTSAVEGAME, g_player[myconnectindex].ps->i, myconnectindex);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue