Change game list order

This commit is contained in:
Loic Guegan 2022-12-25 15:31:23 +01:00
parent 8e01d5b96a
commit 92ec92a210

View file

@ -13,7 +13,7 @@ GameListManager::GameListManager(wxListCtrl *game_list): game_list(game_list), g
void GameListManager::AddGame(CType W,CType B,CType Evt,CType Rnd, CType Res, CType Eco){
long index =
game_list->InsertItem(0, std::to_string(game_counter)); // want this for col. 1
game_list->InsertItem(game_counter, std::to_string(game_counter)); // want this for col. 1
game_list->SetItem(index, 1, W);
game_list->SetItem(index, 2, B);
game_list->SetItem(index, 3, Evt);