1
0
Fork 0

Codechange: Remove unused GenWorldStatus::next_update (#13414)

pull/10835/head
Jonathan G Rennison 2025-01-30 22:09:24 +00:00 committed by GitHub
parent 917d5cc75d
commit 2fa81c89ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 2 deletions

View File

@ -1348,7 +1348,6 @@ struct GenWorldStatus {
StringID cls; StringID cls;
uint current; uint current;
uint total; uint total;
std::chrono::steady_clock::time_point next_update;
}; };
static GenWorldStatus _gws; static GenWorldStatus _gws;
@ -1456,7 +1455,6 @@ void PrepareGenerateWorldProgress()
_gws.current = 0; _gws.current = 0;
_gws.total = 0; _gws.total = 0;
_gws.percent = 0; _gws.percent = 0;
_gws.next_update = std::chrono::steady_clock::now();
} }
/** /**