File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,8 @@ int (*_I_WaitForTic)(int);
126
126
void (*_I_FreezeTime)(bool );
127
127
128
128
int VIZ_GetTime (bool saveMS){
129
- if (saveMS) vizSavedTime = vizTime;
129
+ // if (*viz_allow_input) _I_GetTim(saveMS);
130
+ // if(saveMS) vizSavedTime = vizTime;
130
131
return vizTime;
131
132
}
132
133
@@ -137,6 +138,7 @@ int VIZ_WaitForTic(int tic){
137
138
}
138
139
139
140
void VIZ_FreezeTime (bool frozen){
141
+ // if (*viz_allow_input) _I_FreezeTime(frozen);
140
142
vizFreeze = frozen;
141
143
}
142
144
@@ -167,8 +169,6 @@ void VIZ_Init(){
167
169
I_WaitForTic = &VIZ_WaitForTic;
168
170
I_FreezeTime = &VIZ_FreezeTime;
169
171
}
170
-
171
- // for(size_t i = 0; i < VIZ_MAX_PLAYERS; ++i) vizNodesRecv[i] = 0;
172
172
}
173
173
}
174
174
@@ -213,7 +213,6 @@ void VIZ_Tic(){
213
213
if (!*viz_async){
214
214
VIZ_MQTic ();
215
215
VIZ_InputTic ();
216
- if (*viz_allow_input) VIZ_WaitForTic (vizTime);
217
216
++vizTime;
218
217
}
219
218
}
You can’t perform that action at this time.
0 commit comments