Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/core/contestant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ void Contestant::readFromStream(QDataStream &in) {
// memoryUsed 之前存储为 int 三维数组,现在改为了 qint64,因此先读取旧结构,再逐层转换
QList<QList<QList<int>>> oldMemoryUsed;
in >> oldMemoryUsed;
memoryUsed.clear();
for (const auto &l1 : oldMemoryUsed) {
QList<QList<qint64>> newL1;
for (const auto &l2 : l1) {
Expand Down
Loading